时间:2019-03-17 标签:c#Request.QueryString2Values
我将 url 传递到我的页面,例如 /default.apsx?id=123&user=justin
在我的代码中,我已经运行了一个 Request.Querystring
来获取 id,但我还需要抓住用户。我该怎么做?
I have url being passed to my page something like /default.apsx?id=123&user=justin
In my code I already have a Request.Querystring
running to grab the id, but I need also to grab the user. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Request.QueryString["id"]
和Request.QueryString["id"]
and