如何使用response.redirect或response.write在新选项卡中打开页面
本文关键字:response 选项 redirect 何使用 write 新选项 | 更新日期: 2023-09-27 18:29:08
我有一个按钮事件。在事件结束时,我将重定向到另一个页面。但无法在新选项卡中打开。
给出编译错误-
常数中的换行符
//Response.Redirect("DeliveryChallanPrint1.aspx?val=" +this.txtPoNo.Text);
Response.Write("<script>");
Response.Write("window.open('DeliveryChallanPrint1.aspx?val="+this.txtPoNo.Text','_blank')");//error - newline in constant
Response.Write("</script>");
试试这个:
缺少+"
Response.Write("<script type='text/javascript'>");
Response.Write("window.open('DeliveryChallanPrint1.aspx?val="+this.txtPoNo.Text+"','_blank');");
Response.Write("</script>");