UrlRewriting 影响 ASP.NET AJAX
我在我的项目中使用 UrlRewriting。所有功能都正常工作,但我无法使用 updatePanel 等 ASP.NET Ajax。问题是 ScriptResource.axd 文件丢失(404 错误)。在使用 UrlRewriteting 之前我使用了很多 ASP.net Ajax 控件,所以我无法更改整个代码......
- 如何启用 ASP.NET Ajax?
- 有任何替代方案可以在不更改代码隐藏的情况下替换 ASP.NET Ajax。
I am using UrlRewritting in my project. all functionality is working proper but I cant use the ASP.NET Ajax like updatePanel etc. the problem is ScriptResource.axd file is missing (404 Error). I used lot of ASP.net Ajax control before using UrlRewritting so I cant change the whole code.....
- how can I enable ASP.NET Ajax?
- have any Alternative to replace ASP.NET Ajax without changing in codebehind.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在 web.config 文件中配置 URL 重写模块。
否定所有 .axd 或 .svc 或任何 jquery 或 webservice 请求或任何特定文件或 URL。
例如..
You have to configure the URL Rewriting module in web.config file.
Negate all .axd or .svc or any or any jquery or webservice request or any specif file or URL.
For example..
添加一条规则,明确避免阻止或重新路由所有 .axd 文件。
例如,MVC 项目有这个特定的路由异常:
这可以确保 Ajax(除其他外)正常工作。
Add a rule that explicitly avoids blocking or re-routing all .axd files.
An MVC project for example has this specific route exception:
This ensures Ajax (among other things) works correctly.