我正在将aspx页与母版页一起使用,并使用以下代码在引导模式弹出窗口中打开
`$('#MyPopup').load('WebForm1.aspx', function () {
$('#MyPopup1').modal('show');
});
`
在“ WebForm1.aspx”中,我有一个如下所示的下拉列表
<asp:DropDownList ID="dpStatus" CssClass="form-control" OnSelectedIndexChanged="OnSelectedIndexChanged" runat="server" AutoPostBack="True">
<asp:ListItem Text="Select Fruit" Value="0" />
<asp:ListItem Text="Mango" Value="1" />
<asp:ListItem Text="Apple" Value="2" />
</asp:DropDownList>
我的问题是,上面下拉菜单的change事件没有在我的代码后面触发。在更改下拉菜单时,仅触发基本页面(打开弹出窗口的页面)的页面加载。