PDA

View Full Version : Speed up Your ASP Pages


admin
05-29-2003, 03:42 PM
You should *always* set the buffer to true on all your ASP pages. Doing so will cause your ASP page to execute x% faster. Just add the following line to the top of all your ASP pages...

<% Response.Buffer = True %>

NOTE: With IIS5 (Win2000), the Response.Buffer is set to True by default. Before, you had to manually set it to true.