如何在窗口中传递多个查询字符串。在asp.net中打开

时间:2016-02-27 10:09:11

标签: c# asp.net

我想在window.open中传递多个查询。 我能够在查询字符串中发送一个变量, 但是发送两个变量。 通过网址无效的数据

  Response.Write("<script>");
  Response.Write("window.open('NewQuote.aspx?val=" + this.txtQuotationNo.Text +"  &uid= + this.uniqueid','_blank')");
  Response.Write("</script>");


o/p NewQuote.aspx?val=KST-HYD/15-116/001/G%20%20&uid=%20+%20this.uniqueid

1 个答案:

答案 0 :(得分:0)

更正引号:

Response.Write("window.open('NewQuote.aspx?val=" + this.txtQuotationNo.Text + "&uid=" + this.uniqueid + "','_blank')");