We have a quite big ASP.NET MVC site, which takes 6 seconds to display a page. I used Glimpse and MiniProfier, and both told me that the rendering of the view is the culprit (takes 5.9 secs). The control and the view both are called "List".
I removed the entire markup of the _Layout.cshtml and List.cshtml but still the page takes 6 seconds to load! I had a look at global.asax and all the classes in App_start and nothing was wrong there.
When I looked at Glimpse, it said that "ViewResult.ExecuteResult()" was taking 5.9 seconds to run. I assume this method is called to render the view, but I am surprised because there is really nothing to render because I removed all the markups.
Can anyone please direct me as to how can I diagnose this site?