I am looking at a ASP MVC Web APP whose rendering seems to be very slow. I converted a html template into an ASP MVC app, creating the _layouts etc.
After looking at some article on SO, I found to improve performance this, and I did the following, it helped a little.
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new RazorViewEngine());
Question: How to detect nested, or redundant calls in ASP MVC
rendering from Visual Studio, Chromer or whatever. Should I user glimpse or this MiniProfiler, which seems 7 yrs old
I want to identify
- what libs are contenders for the delay/optimization
- If there are dual calls to any loading of CSS or JS files
- re-organization of scripts/styles, as a general rule, can I add all JS scripts at the bottom of the _Layout and all styles at the head page (in the right order of-course)
thanks