我想在按钮单击中使用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>"); }