60 Performance and Optimization Tips for your Website - Avoid using WYSIWYG...
(Page 6 of 12 )
22. Avoid using WYSIWYG editors, e.g. FrontPage, that include extra and irrelevant text and HTML tags. Learn to edit HTML code by hand.
ASP
23. Disable Session State if not using sessions. If you are using sessions, consider using cookies or an id in the query string along with temporarily storing data in a database. To disable session state, at the top of your ASP page, include the directive:
24. Use Option Explicit to reduce coding errors. At the top of your ASP page, include the directive:
25. Use Server.Transfer over Response.Redirect. Response.Redirect uses an additional round-trip to the web server whereas Server.Transfer does not, reducing the amount of bandwidth used, system resources, and overall response time.
Next: When specifying a... >>
More Web Development Articles
More By Jase Dow