asp.net - Debug without write access to IIS logs -
i don't know asp
, i've started working large corporation , had task asp-classic
web app dumped in lap , doesn't work. no 1 knows , apparently not allowed write iis log files. far seem program failing because far can tell, post
ed http parameters, can see in ie developer console, being sent in never make server , can not found in request.form
. know make of , how might able print out response.querystring
might have access it?
clarifications:
i can see log files can not add own debugging lines used
php
,apache
on linux. i'm fish out of water.proof program failing there program called
aspxtoasp.asp
think turns.net
request parameters classic parameters breaking. gets index out of bounds exception , think it's because being passed empty query string. when tried write query string somewhere never showed up. might able write query string can view it?i not know enough of components of web app organize working version on desktop debugging.
i've used
response.write
,response.end
writerequest.querystring
screen. it's empty. based on , fact program preceding 1 breaks calledlogin.aspx
, consists of setting evs haing ad authentication think issue must authentication configuration issue. usingactive directory
authentication. tell me specific settings in iis ask admins/senior dev poke @ might fix such issue?
a couple of ideas debug:
1) if you're debugging on live site, output of request.form values html comment users aren't affected.
<!-- <% dim key each key in request.form response.write key & "=" & request.form(key) & vbcrlf next %> -->
2) if can debug web app on computer using visual studio, see this answer how debug asp.
Comments
Post a Comment