ASP.NET 和 Jquery PageMethods 发布后失败
我正在使用 Jquery 和 ASP.NET 以及 ajax 调用 PageMethods。在开发环境(VS2010)中,一切都运行/测试得很好。我第一次发布它是为了展示该项目,但无法让它与 IIS 7.5 上发布的文件一起工作...所有 PageMethods 调用都失败了。
- 有人知道是什么原因导致这个问题吗? web.config 中缺少某些内容吗?缺少参考资料吗? IIS设置?任何想法都会有很大帮助。
谢谢。
I'm using Jquery and ASP.NET with ajax calling PageMethods. In the dev evironment (VS2010) everything works/tests great. I published it for the first time to show off the project and couldn't get it working with the published files on IIS 7.5...all PageMethods calls failed.
-Does anybody know what may be causing the issue? Missing something from web.config? A reference missing? IIS setting? Any thoughts would be a big help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎是 IIS/ASP.NET 问题。
通过运行以下命令使其在本地主机 IIS 上运行:
%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
如果将此应用于生产 Web 服务器出现任何问题,我将进行更新。
Seems it was an IIS/ASP.NET issue.
Got it working on localhost IIS by running:
%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -i
I'll update if there are any issues applying this to production web server.