I have a ig:WebDropDown which is having the starting value as 'Select' as below
<ig:WebDropDown ID="ddlTeam" runat="server" Width="260px" DisplayMode="DropDownList">
</ig:WebDropDown>
I used RequiredFieldValidator for the control as below,
<
ErrorMessage="Select a Team" ControlToValidate="ddlTeam">
The problem is when i have value as 'Select' in WebDropDown and click on some button,
the validation fired correctly and after selecting some other value other than 'Select' in WebDropDown
and the Validation Message is not going off, still its showing as 'Select a Team'
What i came to know is only when some post back is happening then only the Validation is working
fine, becoz when i set AutoPostBack = true for WebDropDown its working.
But i dont want to set AutoPostBack = true.
So, can you provide a solution for this ASAP, how to use RequiredFieldValidator for ig:WebDropDown without using
AutoPostBack to true.
---------------------------
Thanks in Advance.
Pavan.