Hi, I have a list...now i want to bind that to a combo box...But i couldn't do it......
List<string> IndiaState = new List<string>();
IndiaState.Add("WB");
IndiaState.Add("Mizoram");
IndiaState.Add("Nagaland");
IndiaState.Add("Karnataka");
IndiaState.Add("Punjab");
IndiaState.Add("UP");
StateCmbbox.DataSource = IndiaState;
the above is my code, please guide me regarding this....!
Thanks and Regards
Akiii