Hi
I'm using Visual Studio 2008, ASP.NET 3.5 and C#.
I have 2 textboxes for a phone#:
I'm using Visual Studio 2008, ASP.NET 3.5 and C#.
I have 2 textboxes for a phone#:
- RadNumericTextBox for area code
- ASP.NET textbox for phone#
When using the following code:
<telerik:RadNumericTextBox ID="txtPrimPhoneAC" Runat="server" Skin="Office2007" MinValue="0" MaxLength="7" MaxValue="999999" NumberFormat-DecimalDigits="0" Width="43px" >
<NumberFormat AllowRounding="False" DecimalDigits="0" GroupSizes="9" />
</telerik:RadNumericTextBox>
<asp:TextBox ID="txtPrimPhoneNo" runat="server" Width="200px" MaxLength="30" ValidationGroup="vgUser"></asp:TextBox>
The placement of the RadNumericTextBox is a few pixels lower than the ASP.NET textbox.
What would be the best way to align their height?
Kind regards
Mark Eaton