I can't see any trace output in ASP.NET
        Posted  
        
            by asksuperuser
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by asksuperuser
        
        
        
        Published on 2010-05-15T19:34:28Z
        Indexed on 
            2010/05/15
            19:44 UTC
        
        
        Read the original article
        Hit count: 237
        
ASP.NET
In Visual Studio 2010 I added Trace to Page_Load as explained here http://www.asp101.com/articles/robert/tracing/default.asp but I can't see any Trace output, why ?
public partial class _Default : System.Web.UI.Page {
    protected void Page_Load(object sender, EventArgs e) {
        Trace.IsEnabled = true;
        Trace.Write("Hello World");
    }
}
© Stack Overflow or respective owner