Hi.
i have an asp page (page1.asp). when i return from a different page page3.asp back to this page using:
i have to refresh the page once only so that it can pick up the data. i'm using this:
which refreshes every 2 seconds. i just like for it to refresh only once upon returning to the page. is it possible?
thanks.
i have an asp page (page1.asp). when i return from a different page page3.asp back to this page using:
Code:
<A HREF="javascript:history.go(-2)">Back to page1</A>
Code:
<meta http-equiv="refresh" content="2">
thanks.