Can anyone advise on the best HTML container to use for an ASP form that can be styled with CSS instead of an HTML table?
For example, consider the following form on an aspx page:
<form id="WPF" runat="server">
<asp:Label ID="lblCCode" Text="Country Code" runat="server">
<asp:TextBox ID="txtCCode" runat="server" Width="85"></asp:TextBox>
</asp:Label>
<asp:Label ID="lblCName" Text="Country Name" runat="server">
<asp:TextBox ID="txtCName" runat="server" Width="150"></asp:TextBox>
</asp:Label>
<asp:Label ID="lblCPop" Text="Country Population" runat="server">
<asp:TextBox ID="txtCPop" runat="server" Width="130"></asp:TextBox>
</asp:Label>