現在、asp.netコンテンツページでjQueryを使用しています(マスターを使用)。jqueryを使用してモーダルダイアログを作成しています。次のコードで定義されているdiv
<div id="example" class="flora" title="Information" style="display:none; visibility:hidden; text-align:left;">
<asp:Panel ID="Panel" runat="server">
Is the information you have entered correct?<br />
<asp:Label>Some labels filled when the modal appears</asp:Label>
<asp:button runat="server" OnClick="someServerSide_Function" Text="Submit" />
</asp:Panel>
</div>
押されるHTMLボタンがあり、ボタンを押すと次のコードが呼び出されます
$("#example").dialog("open");
そして、モーダルは次のコードで定義されます。
$("#example").dialog({
autoOpen: false,
modal: true,
height: 400,
overlay: overlayCss,
bgiframe: true
});
HTMLボタンがクリックされるとモーダルがいっぱいになり、ASP.NETボタンがクリックされてもサーバー側の関数は呼び出されません。Example divはタグ内にあるため、サーバー側の関数を呼び出す必要があります。何が間違っている可能性がありますか?