Here is a quick post for those who don’t know everything yet. If you have code on a server that is already compiled and need to see debugging information on in the page (i.e. trace=true) for whatever reason its doable. All you have to do is enter the following line of code in the applications web.config file in the proper place (inside system.web tags) and you now have debugging information throughout the application.
<system.web>
<trace enabled=”true” requestLimit = “10″ pageOutput=”true” traceMode=”SortByTime” localOnly = “false” />
….</system.web>
Just remember to comment out the code to stop the extra information from showing up at the bottom of every page. Not good for the users as it confuses them. That is all.
Hope this helped someone. Have fun coding and as always, if there are any questions or suggestions, they are always welcome. Thank you.