Request.QueryString 的问题。 读取缓存而不是 URL
我正在尝试从我的 URL 检索 myID 的值。 我正在使用 <%=Request.QueryString["hotelid"] %> 对此进行测试。
它仅在第一次在新浏览器中加载页面或我的项目已重建时才有效。
我的网址字符串是典型的: http://my/path/to/site/ ?hotelid=2。
如果我尝试 <%=Request.QueryString %>,我也会得到其他值。 我在 URL 字符串中没有看到值。
我在这里缺少什么?
更新:
使用 <%=Request.RawUrl%>,我得到以下结果:
/Util/NotFound.aspx?404;http://localhost/ en/Tjenester/Hotellguiden-2/Hotel-infomasjon/?hotelid=3
我不知道 /Util/NotFound.aspx?404 是什么或它来自哪里。
我的网址如下所示:
http://localhost/en/Tjenester/Hotellguiden-2/Hotel -infomasjon/?hotelid=2
更新 2: 我目前正在调查 EPiServer CMS 是否正在使用某种缓存。
更新3: 我已经解决了。 EPiServer 使用 EPnCachePolicyTimeout,设置为 1 小时。 将其设置为 0(零)解决了我的问题。
有时,在这里写下问题,“大声”谈论它确实很有帮助,瞧:)
I'm trying to retrieve the value of myID from my URL.
I'm testing this using <%=Request.QueryString["hotelid"] %>.
It only works the first time the page is loaded either in a new browser, or if my project has been rebuild.
My URL string is typical: http://my/path/to/site/?hotelid=2.
If I try <%=Request.QueryString %>, I'm also getting other values as well. Values I do not see inthe URL string.
What am I missing here?
Update:
Using <%=Request.RawUrl%>, I get the following results:
/Util/NotFound.aspx?404;http://localhost/en/Tjenester/Hotellguiden-2/Hotel-informasjon/?hotelid=3
I have NO idea what the /Util/NotFound.aspx?404 is or where it comes from.
My URL looks like this:
http://localhost/en/Tjenester/Hotellguiden-2/Hotel-informasjon/?hotelid=2
Update 2:
I'm currently investigating if it is EPiServer CMS that is using some kind of caching.
Update 3:
I have solved it. EPiServer is using EPnCachePolicyTimeout which isset to 1 hour. Setting this to 0 (zero) solved my problem.
Sometimes is really helps just writing aboutthe problem here, talking "aloud" about it and voila :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要关闭缓存< /a> 或将参数名称添加到配置属性 httpCacheVaryByParams 或 覆盖自定义缓存键方法 并使其在每个查询字符串参数上有所不同。
You need to turn off caching or add your parameter names to the config attribute httpCacheVaryByParams or overwrite the custom caching key method and make it diff on every querystring parameter.