說明
允許 ASP.NET 在 Web 要求期間讀取用戶端送出的 HTTP 值。
屬性
QueryString:取得 HTTP 查詢字串變數的集合。
Item[String]:從 QueryString、Form、Cookies 或 ServerVariables 集合取得指定的物件。
aspx
<!--網址?後就可以開始串變數和值,若有多個變數使用「&」區別-->
<!--值若需要空白,使用「%20」-->
<!--「&」左右不要隨意 (空白),後台會「接收不到值」-->
<a href="Default.aspx?Id=1&Name=Steven%20Rows"></a>
cs
//QueryString
string id = Request.QueryString["Id"];
//Item[String]
string name = Request["Name"];
兩種方法都會取得值
id會輸出 1
name會輸出 Steven Rows
https://dotblogs.com.tw/marcus116/2012/07/29/73690