Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refreshing a page

Status
Not open for further replies.
thats a tough one... I'm sure you can unless you always refresh that page once when they goto it? Maybe try this:

onclick="javascript:history.back();javascript: window.location.reload();
 
If you put this at the top of the page then it will never be cached - eg when you go backwards it will always refresh:

<%
Response.ExpiresAbsolute = Now() - 1
Response.AddHeader "Cache-Control", "must-revalidate"
Response.AddHeader "Cache-Control", "no-cache"
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top