我在Response.Redirect的帮助下将以下用于重定向到另一个页面的javascript代码转换为c#代码(服务器端)
javascript就是这个。
function GetBillDetails() {
var childWindow = null;
var SelVal = ddl.options[ddl.selectedIndex].value;
var SelText = ddl.options[ddl.selectedIndex].text;
childWindow = window.open('../Mine/MyPrint.aspx?BillNo=' + SelVal + '&Bill=' + SelText +, "MainForm", "width=725px,height=530px,left=150px,top=50px,scrollbars=no,toolbars=no,resizable=no")
}
带有Response.Redirect的和C#代码是,
string BillNo = "255", Bill = "CG2/78";
Response.Redirect("../Mine/MyPrint.aspx?BillNo=" + BillNo + "&Bill='" + Bill + ");
工作正常。但我的问题是如何在RSS代码中使用的Response.Redirect中添加这些新的窗口属性
"width=725px,height=530px,left=150px,top=50px,scrollbars=no,toolbars=no,resizable=no"
答案 0 :(得分:0)
而不是response.redirect,试试这个:
Response.write("<script>");
Response.write("window.open('YOUR_PAGE_WITH_PARAM','_blank')");
Response.write("</script>");
OR
Response.Write("<script language='javascript'> window.open('YOUR_PAGE_WITH_PARAM', 'window','HEIGHT=600,WIDTH=820,top=50,left=50,toolbar=yes,scrollbars=yes,resizable=yes');</script>");