I am asking myself why this is showing the TextBox and the Label horizontally:\[code\]<tr> <td> <asp:TextBox ID="txtDateFrom" onkeypress="return CheckValid();" runat="server"></asp:TextBox> <asp:Label ID="lblErrorBirthDay" runat="server" ForeColor="Red" Text="(***)" Visible="false"></asp:Label><asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ErrorMessage="(*)" ControlToValidate="txtDateFrom"></asp:RequiredFieldValidator> </td></tr>\[/code\]It gives the result:\[code\]|__________________|(***)\[/code\]And this \[code\]<tr> <td> <dx:ASPxDateEdit ID="txtDateFrom" runat="server" CssClass="txtLongerBlack12" ></dx:ASPxDateEdit> <asp:Label ID="lblErrorBirthDay" runat="server" ForeColor="Red" Text="(***)" Visible="false"></asp:Label><asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ErrorMessage="(*)" ControlToValidate="txtDateFrom"></asp:RequiredFieldValidator> </td></tr>\[/code\]gives\[code\]|__________________|(***)\[/code\]What do I have to do so that the second snipped will also be shown both controls (DateEdit and Label) horizontally?