asp.net - Use trace.axd for a single page -
is there way use trace.axd handler tracing single page on site? i'm trying monitor in production, don't want tracing output page, want limit output specific page.
edit: prefer have running record of requests aggregated, trace.axd does.
you can enable page-level tracing (it not use trace.axd, output still in page)
trace.isenabled can enable page-level tracing programmatically, can show trace information in page if conditions met (for instance have parameter in querystring can yourpage.aspx?displaytraceinfo=true). way not risk having users see trace information in page.
Comments
Post a Comment