Hi all,
I'm looking to make sure I'm using DDLs in the most proper way possible. I understand some of this is subjective, but to a degree it's a user experience thing too...
Say I have a DDL for users to select the new employee's Position Type
<asp:DropDownList ID="ddlType" runat="server" ClientIDMode="Static" Width="170" TabIndex="4">
<asp:ListItem Text="Choose..." />
<asp:ListItem Text="Contractor" Value="Contractor"></asp:ListItem>
<asp:ListItem Text="Consultant" Value="Consultant"></asp:ListItem>
<asp:ListItem Text="Full-Time" Value="Full-Time"></asp:ListItem>
...
Go to the complete details ...