I have a table for which I want to display in some proper formatting. Can please anyone help me with these.
Formatting should be basic and simple.
<table width="100%">
<tr>
<td style="width: 10%">
<asp:Label ID="lblProject" runat="server" Text="Project Name">Project Name</asp:Label>
</td>
<td style="width: 30%">
<asp:DropDownList ID="ddlProjectName" runat="server" Width="90%">
</asp:DropDownList>
</td>
<td style="width: 10%">
<asp:Label ID="lblFrmDate" runat="server" Text="From Date">From Date</asp:Label>
</td>
<td st ...
Go to the complete details ...