A*L 发帖数: 2357 | 1 Thank you to take a look.
I am trying to build a commerical website,
after I placing the order,
I want to make the original page expried,
I don't know how to realize that.
I modify the meta
it not realize my gole.
How could I realize that? Thank you very much!
I use ASP. I will really appreciate your great help! | A*L 发帖数: 2357 | 2 //sigh就没有人不吝赐教一把?
【在 A*L 的大作中提到】 : Thank you to take a look. : I am trying to build a commerical website, : after I placing the order, : I want to make the original page expried, : I don't know how to realize that. : I modify the meta : : : : it not realize my gole.
| s***f 发帖数: 173 | 3 以前我记得我发过类似的帖子,那就再发一次了.
实现了点机BACK BUTTON, PAGE 被提示EXPIRES的功能.有对此功能一直有疑问的,可以来
看看.
Here we go, (FOUR files are required : A.asp B.asp C.asp login.asp by the
way)
A.asp
<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
If Len(Session("FirstTimeToPage")) > 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the login page
Session(
【在 A*L 的大作中提到】 : //sigh就没有人不吝赐教一把?
|
|