Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 url 传递到我的页面,例如 /default.apsx?id=123&user=justin
在我的代码中,我已经开始Request.Querystring运行来获取 id,但我还需要获取用户。我该怎么做?
Request.Querystring
string user = Request.QueryString["user"];
Request.QueryString["id"]和
Request.QueryString["id"]
Request.QueryString["user"]