web 2.0

ASP Response.Expires() - Response Object

ASP Response.Expires() - Response Object Gets or sets the number of minutes before a page cached on a browser expires. If the user returns to the same page before it expires, the cached version is displayed.

ShotDev Focus:
- The number of minutes before the page expires.

Example

asp_response_expires.asp


<% Option Explicit %>
<% Response.Expires = 1200 %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Response.write("Welcome To www.ShotDev.Com<br>")
Response.write("Now = "& Now())
%>
</body>
</html>

Create a asp file and save to path root-path/myasp/

Run
http://localhost/myasp/asp_response_expires.asp

Screenshot

ASP & Response.Expires()

.
.
.

Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 1.00 out of 10)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.