dropdown list content
ASP.NET
3
Posts
3
Posters
0
Views
1
Watching
-
i have dropdownlist which displays country names which is mapped to BLL i want first item in that list should be "Select country name" what i must do ? vijaya
vijaya
-
i have dropdownlist which displays country names which is mapped to BLL i want first item in that list should be "Select country name" what i must do ? vijaya
vijaya
Hi, After binding your dropdownlist to the datasource you can explicitly insert a listitem to the dropdown list. the following is the code. dlst.Items.Insert( 0, "Select One" ); I hope this will help u.
Thanks and Regards, Chetan Ranpariya
-
i have dropdownlist which displays country names which is mapped to BLL i want first item in that list should be "Select country name" what i must do ? vijaya
vijaya