i want to go back using the history two pages and reload that page when i get there so that its jsp content will be refreshed. Can this be done in javascript?
refresh when you get there is trickier, since you'll have to devise some method of calling location.reload() only once or else end up in an infinite reload loop...
an easier way may be to set the expiration of the page to immediate - in asp this is done:
response.expires = -1
=========================================================
while (!succeed) try();
-jeff
I use window.location.replace("pagename.asp"
to come back to the same page with a reload
if you dont want a reload use
window.location = "pagename.asp"
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.