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