Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_databases thread: Response.Expires


Message #1 by "Jim Joy Chundevalel" <topgunjim@z...> on Fri, 19 May 2000 08:30:42 +0000
Hi,

 As you said, Response.Expires = <number> sets the time for the expiration

of the page from the Users cache. Setting it to a minus value (-1) causes

the page to expire immediately after it is loaded so that the next time

this page is requested, it will come afresh from the server. But I disagree

with the statement that setting it to zero (0) does not expire the page

immediately.. writing Response.Expires = 0 will also cause the page to

expire immediately after it is loaded. You can test it out by including

a Response.Expires = 0 in your asp page, clear your cache, load this

page and check out the expires propoerty for that file in the cache..

 For scripty timing out, you can either administer IIS or use the Server.ScriptTimeout

in your web page..

Regards,

Jim






  Return to Index