How can I debug ASP.Net app if I can not use VS debugger? I have tried to
print
Console.Out.WriteLine("my Debug")
but it doesn't work in ASP.Net either. Is there any easy way to print some
debug lines between my code to determine program flow?
Should I write them in some file?
Aidy - 27 Mar 2008 15:23 GMT
Try this;
http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx
You may need to use the Trace class though, but it works the same as the
Debug one.
http://msdn2.microsoft.com/en-us/library/system.diagnostics.trace.aspx
> How can I debug ASP.Net app if I can not use VS debugger? I have tried to
> print
[quoted text clipped - 5 lines]
>
> Should I write them in some file?