macupryk Posted November 4, 2005 Posted November 4, 2005 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. Quote
Administrators PlausiblyDamp Posted November 4, 2005 Administrators Posted November 4, 2005 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. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.