Asp.net 页面使其他 asp 页面崩溃
我有几个使用一些数据库连接的 Asp.net 页面 - 问题是当这两个页面单独加载时,它们会导致所有其他 .asp 页面崩溃,但不会导致 .aspx 页面崩溃。
但是,对于未加载的 asp 页面,我收到此错误: HTTP/1.1 新会话失败
I have a couple Asp.net pages that use a few database connections - the problem is when these two pages are separately loaded they crash all the other .asp pages but none of the .aspx pages.
I get this error however for the asp pages that don't load: HTTP/1.1 New Session Failed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我发现的一个片段:
“这可能与匿名用户帐户 (IUSR) 的权限有关 - 请参阅知识库文章 #210842。您还可以尝试卸载应用程序并重新加载它,更改内存设置(例如隔离与.shared)或应用程序池,最后重新启动盒子。”
参考: http:// classicasp.aspfaq.com/general/why-do-i-get-non-database-lated-80004005-errors.html
您能否在与 asp 页面不同的应用程序池中运行 aspx 页面?运行 aspx 页面后有多少可用内存?
Here's a snippet that I found:
"This can have something to do with the permissions of the anonymous user account (IUSR) — see KB #210842. You can also try unloading the application and reloading it, changing the memory settings (e.g. isolated vs. shared) or application pool, and finally rebooting the box."
Reference: http://classicasp.aspfaq.com/general/why-do-i-get-non-database-related-80004005-errors.html
Could you run the aspx pages in a separate application pool from the asp pages? How much memory is available after running the aspx pages?