Wrox Programmer Forums
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 25th, 2007, 03:59 PM
Authorized User
 
Join Date: Jul 2007
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default Pop-up problem

I need to refresh the parent page on closing the browser of the popup or Alt +F4 or other way.
Is there any way we can capture the window closed event and write some code?

thanks


.NET Programmer
__________________
.NET Programmer
 
Old July 26th, 2007, 07:59 AM
Registered User
 
Join Date: Apr 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to akumar.pune Send a message via Yahoo to akumar.pune
Default

Quote:
quote:Originally posted by lathika
 I need to refresh the parent page on closing the browser of the popup or Alt +F4 or other way.
Is there any way we can capture the window closed event and write some code?

thanks


.NET Programmer
Check the following code, hope will help you.
<SCRIPT language=javascript>
function refreshParent()
{
    window.opener.location.href = window.opener.location.href;
    window.close();
}
</SCRIPT>
Amrendra

Hi
 
Old July 26th, 2007, 09:35 AM
Authorized User
 
Join Date: Jul 2007
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thank for the reply!!!

I am able to reload the parent page from pop up by calling a function on body unload event of pop up.

function callparent()
{
window.location.reload(true);
self.close();
}

The problem here is this function is called whenever page unloads .
But I want to call this function only when Browser is closed by clicking the “browser close button” or using keys “alt+f4” etc.
Is there any event to identify whether browser is closed or not?


.NET Programmer





Similar Threads
Thread Thread Starter Forum Replies Last Post
pop up message problem badboy1 ASP.NET 3.5 Basics 3 July 22nd, 2008 08:54 AM
Problem with Pop-up Menus JazzyJ Dreamweaver (all versions) 0 July 12th, 2006 12:17 AM
The problem with pop-up menu and dropdown list williamwang ASP.NET 1.0 and 1.1 Basics 1 April 14th, 2004 02:33 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.