I am having an issue where I have one table cell row and even though I am not telling the code to put them on different lines, it is. I want the button and the image to be on the same line, but the image is defaulting to the line below the text box. How
can I fix this?
<asp:TableRow runat="server" ID="tblRowManualSelection2" Visible="false">
<asp:TableCell Width="60%" ColumnSpan="2" HorizontalAlign="Center">
<dx:ASPxTextBox ID="txtUserOwnTxt" runat="server" MaxLength="10" Width="125px"></dx:ASPxTextBox>
<asp:Image ID="imgCheckAvailability" runat="server" Visible="false"
ImageUrl="~/Images/greenCheckbox.png" AlternateText="Valid URL" />
</asp:TableCell>
...
Go to the complete details ...