I m trying to pop a window up, from inside a procedure running in SharePoint. I need to pass a parameter to the URL, and have been trying to run the following, however, the popup never pops up.
string sURL="http://myserver/mypage.aspx?param1=abc";
Response.Write("script LANGUAGE="Javascript">
");
Response.Write("window.open(""+sUrl +"", "", "width=300, height=100")");
Response.Write("<//script");
Can you help ?
Cheers
Nick