costin -> RE: Refresh the Page Once OnLoad (1/3/2007 0:25:06)
Heres what i did to refresh a page once when visitor click back browser button: 1. framset with 2 pages. created 1 mainframe page and 2 blank hiddenframe pages. frameset parts: ......<frame src="hiddenframe1 url" name="hiddenframe" id="hiddenframe">...... 2. mainframe parts: <body><script language="javascript"> a=top.hiddenframe.location.href; if (a.match('hiddenframe2 url')){top.mainframe.location='mainframe url';top.hiddenframe.location='hiddenframe1 url'}</script> <form......<input type="submit".......onclick="top.hiddenframe.location='hiddenframe2 url';"> </form>.......
redondo -> RE: Refresh the Page Once OnLoad (6/26/2007 11:09:53)
well I'm here for the same problem but I don't see any solution :(
ok, my problem is : I've a product table when I click on delete one products from table a popup window appear for confirmation (yes or no), after I delete yes it close and I'm back to the same window (with table), here I need that page to refresh to delete the deleted product from table!
redondo -> RE: Refresh the Page Once OnLoad (6/28/2007 7:50:50)
yeah I found it :) it is not opener.reload() it is opener.location.reload()
my script is :
quote:
function closingWin(){
if (opener != null && !opener.closed){ opener.location.reload(); opener.focus(); } self.close();
}
and it is working 100% hehehe ... knowledge must be free :)
Hey all my site does not seem to be working with this code <% Response.Expires = -1000 Response.Buffer = True %>
Even though the session is cleared from the database and the session is abandoned, you can still click back on the browser (Firefox) and view the logged in only page. But the thing is when I type in the url separately it display's the guest info. Help would be nice. Thank you very much guys.