[Mono-list] mono and asp.net with xsp2: how to review trace?

Robert Jordan robertj at gmx.net
Wed Feb 20 05:21:03 EST 2008


Bálint Kardos wrote:
> Hi,
> 
> I have a project in which i'm trying to trace some code. It nicely works
> with Cassini (i have Trace="true" in my .aspx file, and Trace.Write()-s in
> my aspx.cs), it shows the trace information in the HTML.
> If I start up XSP2 via shell, the application runs OK, but it will not show
> any information at all, neither in the console, or in the webpage itself.
> 
> How can I see the trace output?

Try to enable tracing in web.config:

<system.web>
	<trace
		enabled="true"
		pageOutput="true"
	/>
...

Robert



More information about the Mono-list mailing list