Validate DropDownList
Here is an example of how to do so:
<form id="Form1" method="post" runat="server">
<asp:DropDownList id="DropDownList1" runat="server">
<asp:ListItem Value="-1">--> Choose <--< FONT>asp:ListItem>
<asp:ListItem Value="1">Lebanon< FONT>asp:ListItem>
<asp:ListItem Value="2">Kuwait< FONT>asp:ListItem>
</< FONT>asp:DropDownList>
<asp:RequiredFieldValidator id="RequiredFieldValidator1"
runat="server" ErrorMessage="You must select a valid option"
ControlToValidate="DropDownList1" InitialValue="-1"
Display="Dynamic" />
< FONT><P>
<asp:Button id="Button1" runat="server" Text="Post Back" />
<< FONT>< FONT>P>
< FONT><form>
Hope that helps,
Regards.