PageMethods 在 Win 2008 R2 的 IIS 7.5 上失败
我有以下 ASP.NET 4.0 代码,它在 Win 2003 机器的 IIS 6.0 上运行良好。但是当我将它推送到Win 2008 R2盒子(IIS 7.5经典模式池)时,它未能出现onAddrLoadError。我正在使用网络农场,也许是网络农场导致了这个问题。我还在负载均衡器上使用 SSL。
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server"></asp:ScriptManager>
function AddEdit_onclick(id)
{
PageMethods.GetProduct(id, onAddrLoadSuccess, onAddrLoadError);
}
有什么想法吗?
I have the following ASP.NET 4.0 code and it is running well on IIS 6.0 of the Win 2003 box. But When I pushed it to the Win 2008 R2 box(IIS 7.5 classic mode pool), it failed to onAddrLoadError. I am using Web Farms and maybe it is the web farms which caused this problem. I am also using SSL on the load balancer.
<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" runat="server"></asp:ScriptManager>
function AddEdit_onclick(id)
{
PageMethods.GetProduct(id, onAddrLoadSuccess, onAddrLoadError);
}
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚安装了 win 2008 的 .NET 4.0 修补程序并且它可以工作。
I just installed the .NET 4.0 hotfix for win 2008 and it works.