vote up 1 vote down star

I'm looking for a way to enable trace for an ASP.Net page via codebehind without using the page or webconfig methods.

My end goal is to have a page that reacts to a querystring element such as ?trace=true then show the tracing information, but prior to that the page would display normally.

I've done some googling and my combination of words ends up with tutorials on using trace in general so any help would be much appreciated.

Thanks -Birk

flag

2 Answers

vote up 1 vote down check

You can set Trace.IsEnabled to true in the codebehind.

link|flag
Perfect, just what I was looking for. – Birk Oct 15 at 1:33
vote up 1 vote down

You could add an iframe to your page that refers to trace.axd and only render this iframe if the query string contains "trace=true"

link|flag
This is a good solution too... I might give this a try sometime. – Birk Oct 15 at 1:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.