I have a ajax pop up on which I have Two Buttons YES/NO. I want when pop up comes on screen and user click on enter button. the Yes Button will work. I have set default to yes button, but I don't know why its not working. Please help me.
HTML CODE IS
<div>
<table>
<tr>
<td>
<asp:Panel ID="pnlSaveCancel" DefaultButton="btnSend" runat="server" Style="display: none;">
<table width="480" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="480" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="480" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="23">
<img src="../images/left_img.png" width="23" height="33" />
</td>
<td width="640" class="top_bg">
</td>
<td width="21">
<img src="../images/right_imag.png" width="21" height="33" />
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="page" style="background-color: White;" align="center">
<table width="460" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table align="center" border="0" cellpadding="2" cellspacing="0" width="460">
<tr>
<td colspan="2" align="center">
Must save before continuing.
</td>
</tr>
<tr>
<td style="padding-top: 10px;" colspan="2" align="center">
<asp:Button ID="btnSend" runat="server" Text="Yes" CssClass="Button"
CausesValidation="true" />
<asp:Button ID="btncancel" runat="server" Text="No" CssClass="Button" CausesValidation="false" />
</td>
</tr>
<tr height="5">
<td colspan="2">
</td>
</tr>
<tr height="15" align="center">
<td colspan="2">
<asp:ValidationSummary DisplayMode="BulletList" CssClass="validation_summary_as_bulletlist"
HeaderText="* Please check the validations on page." ID="ValidationSummary1"
runat="server" />
</td>
</tr>
<tr height="5">
<td colspan="2">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="480" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="23" valign="top">
<img src="../images/bo_left.png" width="23" height="23" />
</td>
<td width="640" class="bot_bg">
</td>
<td width="21" valign="top">
<img src="../images/bo_ri.png" width="21" height="23" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</asp:Panel>
</td>
</tr>
</table>
</div>