Hi
In my page i have arround 14 update panel ,in my updatepanel6 i have one button ,on that button click i want to open new form using javascript ,when i debug code ..it is working fine but it is not opening pop up window
i have tried following all methods
//
Page.RegisterStartupScript("PrintPurchaseOrder", "<script language=JavaScript>window.open('../Operation/PVPrinting.aspx','Hello', 'width=500,height=450,menubar=no,status=yes,location=no,toolbar=no,scrollbars=no,modal=yes,resizable=no,background-color: #ccc,border: 1px solid #000,padding: 10px').focus(); </script>");
-----------------------------------------------------------------------------
ScriptManager.RegisterStartupScript(this.UpdatePanel6, this.UpdatePanel6.GetType(), "key", "alert('Test alert');",true);
----------------------------------------------------------------
ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "PrintPurchaseOrder", "<script language=JavaScript>window.open('../Operation/PVPRINTING.aspx', </script>", true);
----------------------------------------
// ClientScript.RegisterClientScriptBlock(this.GetType(), "PrintPurchaseOrder", "<script language=JavaScript>window.open('../Operation/PVPRINTING.aspx; </script>");
Thank you
Ankita Mali