Session_Start为特定页面运行,创建新的sessionid

发布于 2024-10-30 08:00:57 字数 1598 浏览 4 评论 0原文

我们有一个页面导致 Session_start 运行,我不明白为什么。每当调用 home.aspx 时,都会调用 global.asax 中的 Session_start 并创建一个新的 sessionid。

sessionid 看起来是在调用 session_start 时立即创建的。我认为这很正常。我只是不知道为什么从这个页面调用它。

Home.aspx 使用与其他页面不同的母版页。我还没有发现其中有任何原因导致这种情况。我检查了 Response.Redirect 调用,因为其他人指出这可能是问题所在。我发现没人打电话。

使用萤火虫,我发现了这个: 服务器微软-IIS/5.1 。 。

Location    /ent4_sql/(S(unfzfplfp5ltgxcrtpt2bk3f))/Home.aspx?_TSM_HiddenField_=ctl00_ctl04_HiddenField&_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3aacfc7575-cdee-46af-964f-5d85d9cdcf92%3ade1feab2%3af9cec9bc%3aa67c2700%3af2c8e708%3a8613aea7%3a3202a5a2%3aab09e3fe%3a87104b7c%3abe6fb298

url 中的会话与浏览器地址栏中显示的会话不同。浏览器似乎总是保留原始内容。

通过网上搜索,这个问题似乎没有直接的答案。我只是没东西可找了。任何建议都会有帮助。

更新*** 使用fiddler,我发现系统实际上是去ent4_sql/Home.aspx?.....

注意会话不在URL中 它显示一个页面

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/ent4_sql/(S(bzbos0dmqfcw34wiljuybu2u))/Home.aspx?_TSM_HiddenField_=ctl00_ctl04_HiddenField&amp;_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3aacfc7575-cdee-46af-964f-5d85d9cdcf92%3ade1feab2%3af9cec9bc%3aa67c2700%3af2c8e708%3a8613aea7%3a3202a5a2%3aab09e3fe%3a87104b7c%3abe6fb298">here</a>.</h2>
</body></html>

,并且似乎将调用该页面的任何内容重定向到带有会话的 url。我正在尝试查找有关其他人是否见过 AjaxControlToolkit 执行此操作的更多信息。

We have one page that is causing the Session_start to run and I cannot figure out why. Anytime home.aspx is called, Session_start in global.asax is called and a new sessionid is created.

The sessionid looks to be created right when session_start is called. I think that is normal. I just don't know why it is called all from this page.

Home.aspx uses a different master page than the others. I have not found anything in it that is causing this. I checked the Response.Redirect calls, because others have indicated that could be the issue. I found none being called.

Using firebug, I found this:
Server Microsoft-IIS/5.1
.
.

Location    /ent4_sql/(S(unfzfplfp5ltgxcrtpt2bk3f))/Home.aspx?_TSM_HiddenField_=ctl00_ctl04_HiddenField&_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3aacfc7575-cdee-46af-964f-5d85d9cdcf92%3ade1feab2%3af9cec9bc%3aa67c2700%3af2c8e708%3a8613aea7%3a3202a5a2%3aab09e3fe%3a87104b7c%3abe6fb298

The session in the url is different than the one that is displayed in the browser address bar. The browser seems to always keep the original.

From searching the web, this issue seems to be one that doesn't really have a direct answers. I am just out of things to look for. Any suggestions would be helpful.

Update***
Using fiddler, I found that the system is actually going to ent4_sql/Home.aspx?.....

Notice the session is not in the URL
That displays a page

<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/ent4_sql/(S(bzbos0dmqfcw34wiljuybu2u))/Home.aspx?_TSM_HiddenField_=ctl00_ctl04_HiddenField&_TSM_CombinedScripts_=%3b%3bAjaxControlToolkit%2c+Version%3d4.1.40412.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d28f01b0e84b6d53e%3aen-US%3aacfc7575-cdee-46af-964f-5d85d9cdcf92%3ade1feab2%3af9cec9bc%3aa67c2700%3af2c8e708%3a8613aea7%3a3202a5a2%3aab09e3fe%3a87104b7c%3abe6fb298">here</a>.</h2>
</body></html>

and seems to redirect whatever is calling that to a url with session. I am trying to find more information on if others have seen the AjaxControlToolkit doing this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盛夏已如深秋| 2024-11-06 08:00:57

正如预期的那样,该问题与 Ajax Control Toolkit 和无 cookie 会话有关。这是 2009 年报告的一个处理相同问题的问题。现已修复该问题

http://ajaxcontroltoolkit.codeplex.com/workitem/23443

The problem had to do with the Ajax Control Toolkit and cookieless sessions, as expected. Here is an issue reported in 2009 dealing with the same problem. Fix is now included on the issue

http://ajaxcontroltoolkit.codeplex.com/workitem/23443

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