Hello,
below is the code for Submit and Cancel button. When i have 3 buttons, i aligned the middle one as center. So all the 3 buttons looked good on center. But for something like this, with 2 buttons. How can i align them in the center of tr. With this code it shows on bit left side. Thanks!!
<tr align="center">
<td style="width: 100px; height: 45px;">
<asp:ImageButton ID="imgbtnSubmit" runat="server"
ImageUrl="~/images/submitnew.gif"
OnClick="imgbtnSubmit_Click" ValidationGroup="valCC"
TabIndex="21" />
</td>
<td style="width: 100px; height: 45px;">
<asp:ImageButton ID="imgbtnCancel2" runat="server"
ImageUrl="~/images/cancel.gif"
OnClick="imgbtnCancel2_Click" CausesValidation="false"
ImageAlign="AbsMiddle"
ValidationGroup="valCC" />
</td>