[quoted text, click to view] chuayl wrote:
> i have a page, "parent.aspx" , which will open a new Child Window
> "child.aspx" . user will enter some text on the child window.
>
> Would like to know how to refresh the parent page at the same parent
> window, after the user click on "OK" button. when press on "OK "
> button, the child window will do some processing and close
After processing, insert this code (VB.NET):
'Form the script that is to be registered at client side.
Dim scriptString as String = "<script language=JavaScript>"
scriptString += "window.opener.location.href=window.opener.location.href;<"
scriptString += "/"
scriptString += "script>"
If(Not IsClientScriptBlockRegistered("clientScript"))
Page.RegisterStartupScript("clientScript", scriptString)
End If
--
Riki