Trace does not work with UpdatePanel

  • Thread starter Thread starter Ryan Liu
  • Start date Start date
R

Ryan Liu

Hi,

I found out the trace will not be updated if page is working in partial
upate mode inside upate panel.

Is there a way to work around this?

Thanks!
Ryn
 
Hi,

I found out the trace will not be updated if page is working in partial
upate mode inside upate panel.

Is there a way to work around this?


Trace requires both server and client side, so I am not sure you can use
the default trace mechanism for AJAX call backs. I have not tested it or
experimented with it, so I am not 100% sure, but knowing the mechanism, I
don't think you can do it out of the box using any of the normal code
samples you will find.

Depending on what you are trying to trace, you can set up your own
mechanism.


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
Gregory A. Beamer said:
Trace requires both server and client side, so I am not sure you can use
the default trace mechanism for AJAX call backs. I have not tested it or
experimented with it, so I am not 100% sure, but knowing the mechanism, I
don't think you can do it out of the box using any of the normal code
samples you will find.

Depending on what you are trying to trace, you can set up your own
mechanism.


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************

Yes, thanks. Actually I swith to System.Diagnostics.Trace and debug on
server side.
 
Yes, thanks. Actually I swith to System.Diagnostics.Trace and debug
on server side.


Sounds like you solved it. Good work!

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

Twitter: @gbworld
Blog: http://gregorybeamer.spaces.live.com

*******************************************
| Think outside the box! |
*******************************************
 
Back
Top