Monday, December 20, 2010

How to improve ASP.Net Performance 3: html view

- Keep StyleSheets in the Header and Scripts to the end of Document
- Keep JavaScript and CSS External
- Turn Off ViewState if possible
  <%@ Page EnableViewState = "false" %>
- Disable Session State if possible
  <%@ Page EnableSessionState= "false" %>

No comments:

Post a Comment