Go Back   Gaming Gutter > Non-Gaming > Programming > Tutorials


Tutorials - Looking for programming tutorials to increase your knowledge? Do so here.

» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» Recent Threads
Go to first new post Im Selling Roughly 76m...
Today 03:20 AM
by venture
Last post by ASHTEHCOMMIE
Today 07:12 AM
27 Replies, 28 Views
Go to first new post Looking to buy 1-2...
Today 06:33 AM
Last post by Arsenal
Today 07:12 AM
6 Replies, 7 Views
Go to first new post [PC]Account
Today 07:11 AM
by Kaze
Last post by Kaze
Today 07:11 AM
0 Replies, 1 Views
Go to first new post FIFA 08 fans in here!
07-22-2008 06:27 AM
Last post by venture
Today 07:11 AM
1 Replies, 2 Views
Go to first new post Sex before Marriage?
08-18-2008 04:15 AM
by mika
Last post by terinuptrash
Today 07:10 AM
42 Replies, 43 Views
Reply
 
LinkBack Thread Tools Display Modes

 Force Page To Not Load From Cache [ASP]
Old 10-18-2006, 03:49 PM   #1 (permalink)
Oosband
Guest
 
Posts: n/a
iTrader: / %
Force Page To Not Load From Cache [ASP]

Force Page To Not Load From Cache

Sometimes you may want to make sure that users don't see an old page, you want it to load again and not from the cache when people view it.

This is actually pretty simple, just a short bit of code that at the end I will shorten even more!

Code:
<%
Response.Expires = 0
Response.Expiresablolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader"cache-control","private"
Response.CacheControl = "no-cache"
%>
Or if you want to save file size and execution time you could use this shorter example:
Code:
<%
Response.Expires = -1000
%>
Enjoy!

-- //Oosband
  Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Weapon for a Page Andrewlikr MapleStory 9 11-05-2006 07:26 AM
K. I wanna pwn this page. :o Ryan Chat 1 10-14-2006 10:25 AM
go to page... stewnb Website Suggestions 3 10-11-2006 05:23 PM

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -7. The time now is 07:14 AM.


vBulletin skin developed by: eXtremepixels
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.23929596 seconds (100.00% PHP - 0% MySQL) with 20 queries