GET var 无法正常工作? 里面的例子
这让我很头疼。 在一个函数中,我有下面的代码。 令我头疼的是我可以在 RawUrl 中看到 &id= ,它应该保存的值,同时 if 语句中的 req["id"] 返回 null
var req = HttpContext.Current.Request;
string u = req.RawUrl; // --> /pstcm&id=5653999025705172077
d = null;
if (req["id"] != null)
This is hurting my head. In a func i haave the code below. What is hurting my head is the fact i can se &id= in my RawUrl and it the value it should hold meanwhile req["id"] in the if statement returns null
var req = HttpContext.Current.Request;
string u = req.RawUrl; // --> /pstcm&id=5653999025705172077
d = null;
if (req["id"] != null)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,
id=...
未指定为查询字符串属性。 前面没有?
。 它是 URL 路径本身的一部分。HttpRequest
的索引器将仅考虑 cookie、表单值、查询字符串属性和服务器变量。 显然,它不能神奇地推断出任何任意定义的格式。As far as I can see, the
id=...
is not specified as a querystring attribute. There's no?
before it. It's part of the URL path itself. The indexer ofHttpRequest
will only consider cookies, form values, querystring attributes, and server variables. Obviously, it cannot magically infer any arbitrarily defined format.