Debug ASP.Net app on another server

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

What is the best way to debug an asp.net app on a server? What is the best
way to check for performance issues on a certain webform? How about checking
response times for webform. Also questions on Caching? Is there Caching on
the client side for asp.net? I know there is caching on the server side and
that it is good for basic static pages but does it help for forms that have
datagrids, repeaters, datalists that need to access a database. How do you
turn caching on for a page?

Thanks,

JJ
 
You can debug on a production server, but it is not wise unless absolutely
necessary. It is better to set Trace statements to figure out what is
happening or to add instrumentation to the application. Trace is the easiest
and can be turned on and off at will.

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

***************************
Think Outside the Box!
***************************
 
Back
Top