Pausing a web application

macupryk

Newcomer
Joined
Sep 27, 2003
Messages
21
Location
Canada
I need to view variables or trace I am having problems debugging over a server

I need to look at the following:

Response.Write(Session("ssUserName"))
Response.Write(Session("ssUserAuthority"))
Response.Write(Session("ssUserBU"))
Response.Write(Session("ssNtUser"))
ch = getch() pause here I am not sure how to do this in vb.net.
also should I use Response.Write to trace my variables?

Any help would be appreciated.

Thanks.
 
Web server code runs on the web server not on the client, as such you cannot pause it on the server and wait for a key press in a browser before continuing.
If you want to output information you could either use the normal debug.writeline or you may want to consider looking at the Trace object.
 
Back
Top