2

DropdownListDecks_SelectedIndexChanged过程永远不会被调用。

<asp:DropDownList
        ID="DropDownListDecks"
        runat="server" 
        DataSourceID="EntityDataSourceDecks"
        DataTextField="DeckName"
        viewStateMode="Enabled" 
        DataValueField="DeckBackImageString" 
        CausesValidation="True" 
        onselectedindexchanged="DropDownListDecks_SelectedIndexChanged">
</asp:DropDownList>
4

2 回答 2

5

autopostback=true在 ASP DropDownList 控件中设置。

于 2013-03-02T20:19:22.367 回答
0

如果您使用 mvc 框架,那么这不是创建下拉列表的方法。

但在您的情况下,只需将 autopostback 属性设置为 true。

自动回发=“真”

于 2013-03-02T20:22:12.353 回答