jquery simple modalを使用しています。
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);
}
問題は、私のボタンクリックイベントで、ドロップダウンリストの選択された値を取得していないようです。毎回最初の値にデフォルト設定されます。ページ読み込みイベントで、ドロップダウン リストをテーブルにバインドしています。
誰でも提案できますか?