c# – 如何使用响应在新选项卡中打开页面.在asp.net重定向

前端之家收集整理的这篇文章主要介绍了c# – 如何使用响应在新选项卡中打开页面.在asp.net重定向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在按钮单击中使用response.redirect打开新选项卡或新页面.即时通讯使用查询字符串传递一些值.所以如何在新选项卡中打开页面.
protected void btnSave_Click(object sender,EventArgs e)
   {
     ...//some code to insert records
 Response.Redirect("NewQuote.aspx?val=" + this.txtQuotationNo.Text);//displaying gridview in other page to print what needed

}

解决方法

试试这个.这对我有用……
protected void btnSave_Click(object sender,EventArgs e)
   {
     ...//some code to insert records
 Response.Write("<script>window.open ('NewQuote.aspx?val=" + txtQuotationNo.Text+"','_blank');</script>");


}
原文链接:https://www.f2er.com/csharp/100615.html

猜你在找的C#相关文章