在ASP.NET中,Request.QueryString是用于獲取URL中查詢字符串參數的集合。
使用Request.QueryString的基本語法如下:
string value = Request.QueryString["參數名"];
例如,如果URL是http://example.com?page=1&name=John,你可以使用以下代碼獲取page和name的值:
string page = Request.QueryString["page"];
string name = Request.QueryString["name"];
你也可以使用Request.QueryString.Get方法來獲取查詢字符串參數的值:
string page = Request.QueryString.Get("page");
string name = Request.QueryString.Get("name");
注意,如果查詢字符串中不存在指定的參數名,以上代碼將返回null。因此在使用之前最好進行空值檢查。
另外,你也可以使用Request.QueryString.AllKeys屬性獲取所有查詢字符串參數的名稱數組:
string[] keys = Request.QueryString.AllKeys;
然后你可以遍歷keys數組來處理每個查詢字符串參數。