I am working on a ASP.net 2.0 version and I want to click a button to open a window. I was using window.open to write at vb side.
Response.Write( "<Script language='JavaS cript'>window.o pen('Report.asp x"')</Script>")
It works fine and open the Report.aspx at another window, however, my parent window contains a collapsible panel which can't function after clicking that button. Why is it happen? Can the collapsible panel and window.open work together?
Response.Write( "<Script language='JavaS cript'>window.o pen('Report.asp x"')</Script>")
It works fine and open the Report.aspx at another window, however, my parent window contains a collapsible panel which can't function after clicking that button. Why is it happen? Can the collapsible panel and window.open work together?
Comment