I have login page in asp and i would to expired this page.
Because i don't would like users see this page after entering in the site.
Thank you very much.
Best Regards
Printable View
I have login page in asp and i would to expired this page.
Because i don't would like users see this page after entering in the site.
Thank you very much.
Best Regards
You can use the object Response.
Code:Response.Expires
Response.Expires = 0
Makes the Page Expire Immediately.
Response.Expires = 60
Makes the Page Expire in 1 Hour !