Ajax 控制工具包和自定义 HttpModule
我正在使用 C# 创建 ASP.NET 应用程序 (.NET 2.0),并使用 AJAX Control Toolkit。
为了确保安全,我使用自定义的 HttpModule 来验证每个请求的用户凭据。在开发环境中,一切都按预期工作,但在生产环境中,某些控件不起作用,例如 CalendarExtender。但是,如果我禁用 HttpModule,控件将再次开始工作。
Ajax Control Toolkit 和自定义 HttpModules
之间有什么关系吗?
如果没有,谁能解释一下如何解决这个问题。
谢谢,
I'm creating an ASP.NET application (.NET 2.0) with C# and I'm using the AJAX Control Toolkit.
To ensure security I'm using a custom HttpModule
to verifiy the user credentials on each request. In the developement envirenment everything works as expected, but in the production environment some of the controls don't work, like the CalendarExtender for example. However, if I disable the HttpModule
, the controls start working again.
Is there any relation between the Ajax Control Toolkit and custom HttpModules
?
If not, can any one please explain how to solve this problem.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了这个问题,我刚刚移动了控制访问的代码
PostAcquireRequestState 事件处理程序为PostRequestHandlerExecute 之一。
I solved the problem, i have just moved the code wich control the acces from the
PostAcquireRequestState event handler to the PostRequestHandlerExecute one.