Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <h3>Description</h3> <p>If <strong>tune</strong> means better loading you can do these 3 things. You could optimize the loading time up to 80% with theese techniques.</p> <p>I suggest to use <a href="http://fiddler2.com/fiddler2/" rel="nofollow">Fiddler2</a> to see how your changes perform.</p> <ol> <li>you should compress and combine your javascript files.</li> <li>you should use the <code>OutputCache</code> Attribute if possible</li> <li>you should remove unused <code>ViewEngines</code></li> </ol> <h3>Sample</h3> <ol> <li><a href="http://www.codeproject.com/KB/aspnet/combineMinify.aspx" rel="nofollow">Combine/Compress/Minify JS and CSS files in ASP.NET MVC</a></li> <li><p><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.outputcacheattribute.aspx" rel="nofollow">MSDN: OutputCacheAttribute Class</a></p> <pre><code>[OutputCache(Duration=60)] public ActionResult Index() { return View(); } </code></pre></li> <li><p>do this in <code>global.asax</code> </p> <pre><code>protected void Application_Start() { // other stuff ViewEngines.Engines.Clear(); // if you only use RazorViewEngine ViewEngines.Engines.Add(new RazorViewEngine()); // if you only use WebFormViewEngine ViewEngines.Engines.Add(new WebFormViewEngine()); } </code></pre></li> </ol> <h3>More Information</h3> <ul> <li><a href="http://fiddler2.com/fiddler2/" rel="nofollow">Fiddler2</a></li> <li><a href="http://www.slideshare.net/ardalis/improving-aspnet-mvc-application-performance" rel="nofollow">Improving ASP.NET MVC Application Performance</a></li> <li><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.outputcacheattribute.aspx" rel="nofollow">MSDN: OutputCacheAttribute Class</a></li> <li><a href="http://www.codeproject.com/KB/aspnet/combineMinify.aspx" rel="nofollow">Combine/Compress/Minify JS and CSS files in ASP.NET MVC</a></li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload