|
You can improve the performance of your ASP pages by putting your HTML and your script in separate blocks on the page. In other words, don't intersperse script code throughout your HTML code. Author: asp101.com Code: ASP 3.0 |
| |
Overall Rating:
 User Rated
| |
Not based on reality  Written by Anonymous User (#1458-164) from Cape Cod, MA (Thursday, February 24, 2005)
 |
Strengths: no comment Weaknesses: This has NOT been my experience with ASP 3.0 and IIS 4.0/5.0 Details: There is a good article at http://www.4guysfromrolla.com/webtech/010202-1.shtml that shows a substantial performance improvement when ASP is interspersed within HTML tags versus just using Response.Write to produce both the HTML and the code. It is somewhere around 10x faster when you code the HTML and put your <% ASP %> in where it's needed. Review Based On: using demo only |
| |
|