Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Console

Status
Not open for further replies.

sroberts82

Programmer
Oct 11, 2005
36
0
0
US
Hi,
I was wondering where does console.write write to? I dont want to be using Repsonse.writes for debugging. I cant see the console output anywhere in VS. Is there an equivalent of catalina.out as in java maybe?
 
You can use the command window (Control+Alt+A in visual studio) for debugging as an alternative to Response.Write. e.g. the following will print the contents of a strign variable named "s"
Code:
? s
As for the Console class, that is specifically for use in Console Applications so you shouldn't use that method.

Also, all your variables should be listed in the Auto's window whilst you are debugging the application.



____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top