Installed glimpse attempting to access glimpse.axd and receive 404 error?

前端 未结 5 1863
你的背包
你的背包 2021-02-19 14:04

It is a simple as that I installed glimpse following this page. :

http://getglimpse.com/About/QuickStart

I then attempt to navigate to http://myApp/glimpse

5条回答
  •  Happy的楠姐
    2021-02-19 14:31

    I encountered the same problem and in my case the solution was to add the following code to Application_Start() in the MvcApplication class:

    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    

提交回复
热议问题