我在 UpdatePanel_2 中有一个下拉列表,当在 UpdatePanel_1 中单击 Button_1 时会填充它。
我的 ddlist 标记是,
<asp:DropDownList id="drop1" runat="server" EnableViewState="true" AutoPostBack="true" OnSelectedIndexChanged="Drop1_SelectedIndexChanged" />
然后后面的代码是,
protected void Drop1_SelectedIndexChanged(object sender, EventArgs e)
{ }
我还尝试将 AutoPostback=true 放入我的 DropDownList,但仍然没有成功。
我还添加了触发来更新面板 2,但没有任何收获,
<Triggers>
<asp:AsyncPostbackTrigger ControlID="drop1" EventName="SelectedIndexChanged" />
</Triggers>
我正在使用一个按钮填充 DropDownList,而不是 PAGE LOAD METHOD 请在回答之前阅读。谢谢