Click here to Skip to main content
15,888,351 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Response.Expires = 0
call openconnection


These lines are used in ASP code, i cannot understand these lines.
Posted

1 solution

This means no caching... no browser history...

The Expires property specifies a length of time in minutes before a response page cached on the browser expires.

Thus giving this time as ZERO, the page is to be refreshed (reloaded) every time it is accessed, rather than being stored in a cache.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900