How can I trace from the client side of a ASP.NET web application ? I'm trapped in a aspx.cs
file and I really need some fast simple debugging. I tried System.Diagnostics.Trace.WriteLine
without success: nothing appeared in DebugViewer when I refreshed the page in browser.
Thanks!
Edit: Adding the Trace attribute to the page Directive in my aspx file did trace Trace.Write
, but I don't want all the other bulk trace (some hundred lines)
Edit 2: I'm not using Visual Studio and I don't want it if only for tracing.