M
Michelle Stone
I have an asp.net form, which calls a popup window.
The popup window, based on some user input should call a
function on the parent window.
Is this possible?
I have tried creating a javascript function in the .aspx
file and used the following to call the javascript
function from the popup window
Response.Write ("<script
language=javascript>window.opener.doRefresh ();
</script>");
But I want to call not a javascript function in the .aspx
file, but a c# function in the aspx.cs file. How do I do
this?
Thanks
The popup window, based on some user input should call a
function on the parent window.
Is this possible?
I have tried creating a javascript function in the .aspx
file and used the following to call the javascript
function from the popup window
Response.Write ("<script
language=javascript>window.opener.doRefresh ();
</script>");
But I want to call not a javascript function in the .aspx
file, but a c# function in the aspx.cs file. How do I do
this?
Thanks