Hi TPS,
Thank you for using Microsoft Newsgroup Service. Based on your description.
When you use the Page Level tracing and let the Trace Logging to Page
Output. You found that the trace output are output onto the page in
disorder layout(even mixed with the controls on it). Is my understanding
correct?
If so, I think the problem is likely caused by the controls' position mode
on the webpage. If you locate the control or other element on the page as
relative position, the trace output will have on problem, just output at
the page's bottom.Because the trace will output the information ontot he
page by flow sequnce(after any other control or element which use relative
position,mode) However, if you locate some of the controls as absolute
position mode,for example:
<asp:Button id="Button1" runat="server" Width="128px" Height="40px"
Text="Button" style="Z-INDEX: 101; LEFT: 528px; POSITION: absolute; TOP:
32px"></asp:Button>
the "POSITION:absolute; TOP:32PX" just specify the absolute position.
In such cases, the trace output will ignore those contorls which use the
absolute position mode. And if some of the controls are right at the place
which will cover the trace output, then you will encounter the result that
the trace output and some controls are mixed together.
I think this a limit in the html page(since controls or element using
absolute position can cover other element on the same page).
Please try out the preceding suggestions and let me know whether they help.
Steven Cheng
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)