How to arrange table in tr and td with single line border
Leave Type dropdownlist From Date textbox1To Date textbox2 Reason textbox3
for above format in html how to design in table using tr and td with single line border
The below code i tried as follows
<asp:Label ID="lbluser" runat="server" Text="Leave Type">
<asp:DropDownList ID="ddlleavetype" runat="server">
<asp:ListItem Enabled="true" Text="Select Leave Type" Value="-1">
<asp:Label ID="lblfromdt" runat="server" Text="From Date">
<asp:TextBox ID="textbox2" runat="server">
<asp:Label ID="lbltodate" runat="server" Text="ToDate">
<asp:TextBox ID="textbox1" runat="server">
<asp:Label ID="lblreason" runat="server" Text="Reason">
<asp:TextBox ID="textbox3" runat="server">
what i tried the above code it is not working