updatepanelを使用して非同期ポストバックを実行しています。非同期ポストバックボタンが2回クリックされた後、UpdatePanel内にある要素にマウスオーバー効果を接続するためにjQueryを使用している理由がわかりません。イベントは$(document).readyにバインドされています
<script type="text/javascript">
window.onload = body_load;
function body_load()
{
BindEvents();
}
function BindEvents()
{
$(function ()
{$(".csstablelisttd").mousedown(function (e)
{//mouse down code});
$("#contentPlaceHolderMain_btnFix").click(function (e)
{alert("Alert");//here alert is generate two times an then postback occurs
//btn click code
}
}
}
</script>
<asp:UpdatePanel ID="updatePanelTableAppointment" runat="server">
<ContentTemplate>
<table id="table" runat="server">
//table data
</table>
<script type="text/javascript">Sys.Application.add_init(body_load);
</script>
</ContentTemplate><Triggers>
<asp:AsyncPostBackTrigger ControlID="btnFix" EventName="Click" />
</Triggers>
</asp:UpdatePanel>