Results 1 to 6 of 6

Thread: Something is wrong with the page...

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    May 2002
    Posts
    1,602

    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

  2. #2
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Something is wrong with the page...

    It probably renders before the inherited page does. Where is your tracing code? How is it enabled?

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    May 2002
    Posts
    1,602

    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

  4. #4
    C# Aficionado Lord_Rat's Avatar
    Join Date
    Sep 2001
    Location
    Cave
    Posts
    2,497

    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)

  5. #5
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Something is wrong with the page...

    Nice, I didn't think of the grid. In fact, I never think of grids.

  6. #6

    Thread Starter
    Frenzied Member
    Join Date
    May 2002
    Posts
    1,602

    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
  •  



Click Here to Expand Forum to Full Width