Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Controls > Trace Starting Location

Reply
Thread Tools

Trace Starting Location

 
 
Thom Little
Guest
Posts: n/a
 
      07-01-2004
If I enable trace as in:

<%@ Page language="c#"
Codebehind="StepByStep12_1.aspx.cs"

AutoEventWireup="false"

Inherits="_315C12.StepByStep12_1"

Trace="true"%>

The trace overlays the other information displayed on the page. The trace
always starts at 0,0 on the page.


How can I control the starting position of the trace information displayed
on the page?

--
-- Thom Little -- www.tlaNET.net -- Thom Little Associates, Ltd.
--



 
Reply With Quote
 
 
 
 
Robert Koritnik
Guest
Posts: n/a
 
      07-01-2004
U R using GridLayout and all elements on your page are positioned absolutely
except trace information which is displayed in FlowLayout. That's your
problem. You could position trace table absolutely with javascript in onload
event of the body.

But rather than that you could also turn on tracing without pageoutput in
web.config. Just set trace to true and pageoutput to false. Open two
browsers. In one you run your asp.net app in other you access trace.axd
file... like http://yourWebServerName/appVirtualFolderName/trace.axd

Actually the second one is even better if you maybe use some friendly error
page display. With this technique you can see all requests trace even the
one before error page to see stack trace on exception... etc...

--
RobertK
{ Clever? No just smart. }

"Thom Little" <> wrote in message
news:...
> If I enable trace as in:
>
> <%@ Page language="c#"
> Codebehind="StepByStep12_1.aspx.cs"
>
> AutoEventWireup="false"
>
> Inherits="_315C12.StepByStep12_1"
>
> Trace="true"%>
>
> The trace overlays the other information displayed on the page. The trace
> always starts at 0,0 on the page.
>
>
> How can I control the starting position of the trace information displayed
> on the page?
>
> --
> -- Thom Little -- www.tlaNET.net -- Thom Little Associates, Ltd.
> --
>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
3 ESSENTIAL TOOLS FOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLSFOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLS FOR STARTING ANDMAINTAINING... Oanh Bui C++ 0 04-27-2009 12:51 PM
3 ESSENTIAL TOOLS FOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLSFOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLS FOR STARTING ANDMAINTAINING... Oanh Bui C Programming 0 04-27-2009 12:51 PM
3 ESSENTIAL TOOLS FOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLSFOR STARTING AND MAINTAINING...3 ESSENTIAL TOOLS FOR STARTING ANDMAINTAINING... Oanh Bui Python 0 04-27-2009 12:46 PM
Location, location, location =?Utf-8?B?VHJhY2V5?= Wireless Networking 2 02-17-2007 08:37 PM
Trace: Can anyone suggest a good tool to catch trace messages? Rukmal Fernando ASP .Net 4 10-27-2003 09:03 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57