VB.NET - How to use performance monitor to diagnose bottlenecks in your application?

How to use performance monitor to diagnose bottlenecks in your application?

1. Click start->run and type perform to run performance monitor.
2. Select system monitor in the tree.
3. Click view report.
4. Click Add button , under performance object select ASP.Net object to track.
5. Select all counters and click on add.

You can create your own counters in the application as below:
void MyCustomCounter()
{
     PerformanceCounterCategory.Create("CategoryName", "MyCounter", PerformanceCounterCategoryType.MultiInstance, "CounterName", "MyCounter");
}
VB.NET - Explain how to configure Trace switches in the application's .config file.
Configure Trace switches in the application's .config file
VB.NET - What is the purpose of AddHandler keyword?
What is the purpose of AddHandler keyword? - Addhandler associates an event with its handler at runtime......
VB.NET - how to implement globalization and localization in the use interface
How to implement globalization and localization in the use interface - Application use locale to identify the language and country of the user......
Post your comment