【发布时间】:2013-11-10 15:52:44
【问题描述】:
我正在 asp.net 中开发一个应用程序,它需要通过调用 asmx 方法来填充级联下拉列表。
该代码在 Google Chrome 和 Mozilla FireFox 上运行良好,但在 IE10 上抛出 Method Error 500.. 我缺少任何 IE 设置吗??
代码如下:
<ajaxToolkit:CascadingDropDown ID="SomeCascadingDropDown" runat="server"
ParentControlID="SomeParentDropDownList" Category="Product"
TargetControlID="SomeDropDownList"
ServicePath="~/Services/SomeEntitysData.asmx"
ServiceMethod="GetSomeEntity"
LoadingText="Loading"
PromptText="Select">
</ajaxToolkit:CascadingDropDown>
e
【问题讨论】:
-
这不太可能,因为 web 服务假设是独立于平台的。请添加更多代码,例如 webservice 的代码隐藏
标签: asp.net internet-explorer asp.net-ajax asmx ajaxcontroltoolkit