Something is wrong with the page...
I made a simple webforms basepage which I inherit all my other webforms pages from. Now the strange thing is that whenever I enable tracing and set pageoutput to true... the trace information is written OVER the existing webpage, not below it, like it normally does. Does anyone have a clue to why it does like that? I haven't actulally made any big changes in the basepage. Just added some helper methods.
kind regardsd
Henrik
Re: Something is wrong with the page...
It probably renders before the inherited page does. Where is your tracing code? How is it enabled?
Re: Something is wrong with the page...
Well I enable it in the web config file,
<trace enabled="true" requestLimit="10" pageOutput="true" traceMode="SortByTime" localOnly="true" />
Its really wierd...
/Henrik
Re: Something is wrong with the page...
This is happening because you layed out your page in grid layout mode.
You should be using flow layout. Grid is the devil, for reasons like this exactly.
Re: Something is wrong with the page...
Nice, I didn't think of the grid. In fact, I never think of grids.
Re: Something is wrong with the page...
Sadly the tracing is still writing at the top of the page on top of the ordinary page, even when I set the page to flowlayout
kind regards
Henrik