CascadingDropDown错误 - 'options'为null或不是对象

时间:2009-03-05 14:41:00

标签: .net asp.net ajax drop-down-menu cascadingdropdown

我有五个DropDownListCascadingDropDown AJAX控件链接在一起。当它在本地运行时,它们工作正常。但是,当通过互联网在生产服务器上运行时,每次选择新项目时都会出现此错误:

'options' is null or not an object

调试它会显示导致它的函数(来自CascadingDropDown控件的JS):

_clearItems : function() {
    /// <summary>
    /// Clear the items from the drop down
    /// </summary>
    /// <returns />

    var e = this.get_element();
    while (0 < e.options.length) {
        e.remove(0);
    }
},

有没有人对它为什么这样做有任何想法?我怀疑这是因为在互联网上加载物品需要更长的时间,这会影响控制?

我正在运行.NET 3.5。

提前致谢。

1 个答案:

答案 0 :(得分:3)

确保下拉列表中包含autopostback =“false”.autopostback =“true”对我造成了问题。 - 法赫德