我正在 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