filmov
tv
Tracing in asp.net Part 79

Показать описание
Text version of the video
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
Slides
All ASP .NET Text Articles
All ASP .NET Slides
All Dot Net and SQL Server Tutorials in English
All Dot Net and SQL Server Tutorials in Arabic
Tracing enables us to view diagnostic information about a request and is very useful when debugging application problems.
In a later video session, we will discuss about, how tracing can be used to solve a performance related problem.
Tracing can be turned on or off
1. At the application level or
2. At the page level
To disable tracing for specific pages, set Trace="false" in the webform's "Page" directive
To append trace messages at the end of the page set pageOutput="true".
Use RequestLimit attribute to control the number of trace requests that are stored on the server. The default is 10. After this limit is reached, the sever will stop writing to the trace file.
If you want to log trace messages, even after the requestLimit has reached set mostRecent attribute to true. When this attribute is set to true, the old entries in the trace log are discarded and the new entries get added.
Healthy diet is very important both for the body and mind. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking our YouTube channel. Hope you can help.
Slides
All ASP .NET Text Articles
All ASP .NET Slides
All Dot Net and SQL Server Tutorials in English
All Dot Net and SQL Server Tutorials in Arabic
Tracing enables us to view diagnostic information about a request and is very useful when debugging application problems.
In a later video session, we will discuss about, how tracing can be used to solve a performance related problem.
Tracing can be turned on or off
1. At the application level or
2. At the page level
To disable tracing for specific pages, set Trace="false" in the webform's "Page" directive
To append trace messages at the end of the page set pageOutput="true".
Use RequestLimit attribute to control the number of trace requests that are stored on the server. The default is 10. After this limit is reached, the sever will stop writing to the trace file.
If you want to log trace messages, even after the requestLimit has reached set mostRecent attribute to true. When this attribute is set to true, the old entries in the trace log are discarded and the new entries get added.
Комментарии