navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

RE: Refresh the Page Once OnLoad

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> ASP and Database >> RE: Refresh the Page Once OnLoad
Page: <<   < prev  1 [2]
 
costin

 

Posts: 1
Joined: 1/2/2007
Status: offline

 
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>.......

(in reply to hhammash)
redondo

 

Posts: 14
Joined: 6/26/2007
Status: offline

 
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!

(in reply to hhammash)
redondo

 

Posts: 14
Joined: 6/26/2007
Status: offline

 
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 :)

u can see it on http://www.frontpagewebmaster.com/m-368448/tm.htm#368614

(in reply to redondo)
gregk

 

Posts: 1
Joined: 12/22/2007
Status: offline

 
Response.Expires = -1000, doesent work? - 12/22/2007 20:14:25   
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.

(in reply to hhammash)
Page:   <<   < prev  1 [2]

All Forums >> Web Development >> ASP and Database >> RE: Refresh the Page Once OnLoad
Page: <<   < prev  1 [2]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts