Route debugger for ASP.NET MVC
Is there a Route debugger for ASP.NET MVC out there? If so, w开发者_Python百科here do I find it?
Phil Haack has a route debugger on his blog.
codeplex has a routing debugger visualizer for vs2010.
All the prior information is outdated the configuration links no longer work for example.
Refer to Scott Hanselman's Blog for Glimpse https://www.hanselman.com/blog/IfYoureNotUsingGlimpseWithASPNETForDebuggingAndProfilingYoureMissingOut.aspx
Install with Nuget:
Install-Package Glimpse
or with MVC5 for example:
Install-Package Glimpse.MVC5
Then go to configuration page (can be different if in web config) Look for url Glimpse.axd.
Then go to the url to:
https://localhost:<your port>/Glimpse.axd
The documentation links may be out of date but the github repo has the most information: https://github.com/glimpse/glimpse
精彩评论