I using following script in my project. Once click the button and there will open a pop up window. But "Page.ClientScr ipt.RegisterSta rtupScript" script seem NOT working in update panel. After remove Update panel and it is working properly. Any solution?
Code:
Page.ClientScript.RegisterStartupScript(Me.GetType(), "openpopup", "window.open('" & "child.aspx" & "','ChildWindow','height = 520, width = 730,status=no,location=no,directories=no, resizable = 1, scrollbars=yes, left=75, top=75')", True)
Comment