window.open传值和打开方式

//传值
window.open ('xxx.aspx?id='+要传的值,'newwindow', 'height=450, width=500, top=0, left=0, toolbar=no, menubar=no, resizable=no,location=no, status=no') ;


//接受值(在后台接受)
string a= Request["id"].ToString();





window.open("http://www.sina.com.cn", "_self");//在原窗口打开



//window.open打开新窗口,然后关闭老窗口。
window.open("test2.htm?word="+document.ww.word.value,"_blank")
window.close()

你可能感兴趣的:(window.open)