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

本文关键字:查询 字符串 asp 开业 net 窗口 | 更新日期: 2023-09-27 18:36:25

我想在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

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

更正引号:

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