我正在使用下面的代碼通過javascript來分配iframe src。它工作正常。但在後面的C#代碼我得到了這樣的查詢字符串。 id=Y&%3bcust_id=100&%3
。我如何減少此。現在使用c獲取Querystring值#
var value = "validity.aspx?id=Y&cust_id=" + cust_id + "";
frameElement.src = value
我想從查詢字符串中獲取客戶的價值,但它總是返回null。
if(Request.QueryString["cust_id"] !=null) //It returns null
發生在VAR值線路斷點,看看什麼cust_id是否有它 – tariq
它返回null.But它擁有確切的客戶id。由於這個原因它返回null。 – user2176150
Server.UrlDecode(xxxxxxxx) –