KEMBAR78
Tracing in ASp.Net
Tracing in ASP.NET
Presenter:
Pradip Bhattarai
Nepathya College
BSC.CSIT, 6th semester
Tracing
 It is a process to see to see if any pages requested results in an
error.
 When tracing is enabled, a page “trace.axd” is automatically
added to the application.
 This can be done in two ways:
a) Page level
b) Application level
Page Level Tracing
 It provides general information about a web page when it is being processed.
 It is useful in debugging if a page does not work for any reason.
Application Level Tracing
 Enable tracing for whole application.
 It is done as:
Application Level Tracing
 It provides information about:
a) The time of the request for the web page.
b) The Name of the web page being requested.
c) The status code of the web request. (status code of 200
means that the request is successful).
d) And other details.

Tracing in ASp.Net

  • 1.
    Tracing in ASP.NET Presenter: PradipBhattarai Nepathya College BSC.CSIT, 6th semester
  • 2.
    Tracing  It isa process to see to see if any pages requested results in an error.  When tracing is enabled, a page “trace.axd” is automatically added to the application.  This can be done in two ways: a) Page level b) Application level
  • 3.
    Page Level Tracing It provides general information about a web page when it is being processed.  It is useful in debugging if a page does not work for any reason.
  • 4.
    Application Level Tracing Enable tracing for whole application.  It is done as:
  • 5.
    Application Level Tracing It provides information about: a) The time of the request for the web page. b) The Name of the web page being requested. c) The status code of the web request. (status code of 200 means that the request is successful). d) And other details.