我正在使用jquery 简单模式。
function showCancelledModal() {
$('#<%=CancelledPanel.ClientID %>').modal({ appendTo: 'form' });
}
<asp:Panel ID="CancelledPanel" runat="server" Style="display: none">
<asp:DropDownList ID="CancelledDropDownList" runat="server"></asp:DropDownList>
<asp:Button ID="CancelButton" runat="server" Text="Cancel" OnClick="CancelButton_Click" />
</asp:Panel>
protected void CancelButton_Click(object sender, EventArgs e)
{
var item = CancelledDropDownList.SelectedItem.Value;
//CancelReservation(strReservationId);
}
问题是,在我的按钮单击事件中,它似乎没有获得下拉列表的选定值。它只是每次都默认为第一个值。我将下拉列表绑定到页面加载事件中的表。
任何人都可以提供任何建议吗?