Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debug Toolbar for ASP.NET

Is there something akin to the 'Django Debug Toolbar' for ASP.NET (and more specifically ASP.NET MVC).

It's an HTML page overlay that shows total execution time, SQL queries (and time), what views were called... etc.

like image 392
jameszhao00 Avatar asked Feb 15 '10 01:02

jameszhao00


People also ask

What is a Debug toolbar?

The Debug toolbar provides access to tools for debugging program source code. From this toolbar you can: Attach to running processes.

What is Debug ASP Net?

What is Debugging in ASP.NET? Debugging is the process of adding breakpoints to an application. These breakpoints are used to pause the execution of a running program. This allows the developer to understand what is happening in a program at a particular point in time.

How do I Debug .NET core in IIS?

To start debugging, select IIS Express (<Browser name>) or Local IIS (<Browser name>) in the toolbar, select Start Debugging from the Debug menu, or press F5.


1 Answers

I'm a bit late with the answer. The mini profiler does just that. You can see it in action at http://data.stackexchange.com (top left corner).

like image 126
PHeiberg Avatar answered Oct 26 '22 14:10

PHeiberg