Reload opener page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have the following problem:
I Open a WebForm by window.open(...). In the new Webform I do some
operations, and I value a session variable. On the pressing of a button in
the form opened, I would like to do some server-side operations and after
these operations, I would like to reload the opener page.
How can I execute server-side operations and after reload the opener?
Who can help me?

Thank You
Alessandro Rossi
 
After you are done with your server side work, you can write the following
code to refersh the opener

Dim sScript As New System.Text.StringBuilder

sScript.Append("<SCRIPT language=""javascript"">" & vbCrLf)

sScript.Append("top.main.location = top.main.location;" & vbCrLf)

sScript.Append("</SCRIPT>" & vbCrLf)

RegisterStartupScriptBlock("ForceDefaultToScript", sScript.ToString)


This client script which is registered using registerstartupscript will run
immd after your page is rendered.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top