Glimpse / Glimpse

The open source diagnostics platform for the web

Home Page:http://getGlimpse.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Glimpse dumping __asptrace (asp.net trace output) with WebForms package

ensemblebd opened this issue · comments

Enabled modules:

  • Glimpse v1.8.6
  • Glimpse.AspNet v1.9.2
  • Glimpse.Mvc5 v1.5.3
  • Glimpse.Ado v1.7.3
  • Glimpse.EF6 v1.6.5
  • Glimpse.WebForms v1.1.1

As soon as I install the Glimpse.WebForms package, it starts dumping the ASP traces to the page.
(And yes, my project does combine both aspx web forms and MVC routed razor pages with EF6. Am converting it to mvc)

Attempts to resolve..

I've ensured that in my web.config:

<system.web>
    <trace enabled="false" />
</system.web>

And verified that no aspx pages utilize the Trace= property for the Control.
Have even forced it at the Base-class for System.Web.UI.Page , aka:

			Page.Trace.IsEnabled = false;
			Trace.IsEnabled = false;

And yet, there it is on the page output.

Is this a user error, or does Glimpse always dump the classic ASP Trace to the output buffer when the WebForms package is installed?


Additionally, if you remove the WebForms package, the asptrace still dumps to the page.
You have to completely remove Glimpse, and reinstall it, to fix the issue.