Pop up window from inside Web user control
In my application I have used a Web User control . Inside the form I have a dropdown field.A pop up window will display , based on the option selected from the dropdown.
for my dropdown selected index changed I have
string strJavascript = "window.open(\"intDisplay.aspx\", \"gointl\", \"height=500,width=600,scrollbars=yes,resizable\") ;";
ScriptManager.RegisterStartupScript(this, this.GetType (), "OpenWindow", strJavascript, true);
But the popup window is not showing up. I have used Update Panel in my form.
PLease let me know some suggestions. Thanks,
|