I want the text box and the Apply button to be on the straight line. What am I doing wrong?
<tr align = "center" valign ="bottom">
<td align="left" style="padding-top: 15px; height: 30px;">
Promo Code</br><asp:TextBox ID="txtCouponCode" runat="server" MaxLength="10" TabIndex="5" Width="130px" />
<asp:ImageButton ID="ImageButton1" ImageUrl="../images/apply-blue.gif" runat="server"
OnClick="imgApply_Click" ValidationGroup="0"/>
Aside from the minor issue with your malformed BREAK tag:
</br>Should be<br />… and assuming that you are in fact closing out your table row and table data tags. Then your snippet:
Should produce roughly the following HTML:
Which should render exactly the way you want. So… could you provide some more context?