2016-02-27 76 views
0

我想在window.open中傳遞多個查詢。 我可以發送查詢字符串中的一個變量, 但發送兩個變量時。 無效的數據通過URL去如何在窗口中傳遞多個查詢字符串。在asp.net中打開

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 

回答

0

正確的引號:

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

@krishnamohan我已經糾正了答案 – romanoza

相關問題