[Mono-list] Does mod_mono support Trace="true" directive?

Robert Jordan robertj at gmx.net
Fri May 4 11:16:36 EDT 2007


Ted Milker wrote:
> ASP.NET running under IIS allows you to set a page directive Trace equal 
> to true which will make the ASP.NET runtime output a ton of information 
> about the page, the request, the controls used, etc.  Does mono support 
> this yet?  I have attempted to add it to my pages with MonoDebug turned 
> on and off but it does not appear to work.  Do I need to change 
> something somewhere else to get this to work?

I don't know whether the page trace attribute is implemented,
but the global trace configuration used to work at least
with ASP.NET 1.1:

<configuration>
	<configSections>
	<system.web>
		<trace
			enabled="true"
			requestLimit="10"
			pageOutput="false"
			traceMode="SortByTime"
			localOnly="false"
		/>
	...

The trace can be displayed with http://<host>/<appname>/Trace.axd

Robert



More information about the Mono-list mailing list