<div class="layui-inline inLine">
<label class="layui-form-label">所属设备:</label>
<div class="layui-input-inline">
<asp:DropDownList ID="PlatformList" runat="server" AutoPostBack="true" OnSelectedIndexChanged="PlatformList_SelectedIndexChanged1">
</asp:DropDownList>
</div>
</div>
<div class="layui-inline inLine">
<label class="layui-form-label ">所属APP:</label>
<div class="layui-input-inline">
<asp:DropDownList ID="AppList" runat="server"></asp:DropDownList>
</div>
</div>
后台:
protected void PlatformList_SelectedIndexChanged1(object sender, EventArgs e)
{
BindAppList();
}
控件有个属性。autopostback=true
你生成OnSelectedIndexChanged 事件的时候 是否是通过新建事件或者选择已有事件达成的
一般说来像如下操作是没问题的:
事件需要正确绑定,你可以选择新建事件,或者选择第三个,可能是前台代码直接复制的原因,没有正确绑定。