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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp page reload!!! 1

Status
Not open for further replies.

NiteCrawlr

Programmer
Mar 16, 2001
140
0
0
BR
I have a ASP page where I have a link which opens a Splash, but to open this splash window I need to refresh the page.
Is there any way where when I click on the link the page will refresh???
OBS: I also need the # after the link, because I'm using the <a name=>, EX: When I use the # the splash doesn't open, and when I remove it, the page works fine.

Thank you
 
Here is one way to do it:
To make a page refresh everytime it is loaded:
<meta HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;>

(Personally, I do this quite often to any page that could possibly change in the future because if you don't your user will most likely not be seeing the most current update of that page.)

To Redirect using a link in ASP:
Response.Redirect &quot;message.htm&quot;

Put the refresh meta tag on the page that should refresh everytime it is accessed and then use the redirect to reload it.

While there may be other / better ways to do it, this should take care of your problem.

Hope it helps!

Bryan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top