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">
                                                                &nbsp;
                                                            </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" />
                                                                            &nbsp;<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">
                                                                &nbsp;
                                                            </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>
link|improve this question

58% accept rate
is this link button ?, also maybe you need to set the focus on this button after the ajax opens. With out code only guess can be do. – Aristos Feb 13 at 10:44
no its <asp:button /> – Ram Singh Feb 13 at 10:44
Please post markup and code – Sir Crispalot Feb 13 at 10:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.