|
-
Jan 9th, 2006, 12:19 PM
#1
Thread Starter
Frenzied Member
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
-
Jan 9th, 2006, 03:58 PM
#2
Re: Something is wrong with the page...
It probably renders before the inherited page does. Where is your tracing code? How is it enabled?
-
Jan 10th, 2006, 02:52 AM
#3
Thread Starter
Frenzied Member
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
-
Jan 10th, 2006, 11:58 AM
#4
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.
Need to re-register ASP.NET?
C:\WINNT\Microsoft.NET\Framework\v#VERSIONNUMBER#\aspnet_regiis -i
(Edit #VERSIONNUMBER# as needed - do a DIR if you don't know)
-
Jan 10th, 2006, 04:37 PM
#5
Re: Something is wrong with the page...
Nice, I didn't think of the grid. In fact, I never think of grids.
-
Jan 11th, 2006, 07:17 AM
#6
Thread Starter
Frenzied Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|