Request.QueryString 的问题。 读取缓存而不是 URL

发布于 2024-08-01 21:03:50 字数 1175 浏览 5 评论 0原文

我正在尝试从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纵情客 2024-08-08 21:03:50

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文