inside the values in the Dropdownlist
-
HI :confused: Please post proper Query What you want to do with dropdown control ? :doh::confused:
Thanks and Regards Sandeep If you want something you never had, do something you have never done!
-
You can add the values inside of the dropdownlist by in asp.net(c#) void page_load() { -------- --------- dropdownlist1.Items.Add("INDIA"); dropdownlist1.Items.Add("CHINA"); dropdownlist1.Items.Add("U.S.A"); dropdownlist1.Items.Add("U.A.E"); -------- ----- }
-
HI :confused: Please post proper Query What you want to do with dropdown control ? :doh::confused:
Thanks and Regards Sandeep If you want something you never had, do something you have never done!
-
Depends on your requirment Items can be added Staticly or dynamically 1) static way :- Right click the drop down list go to collection/items add there 2) Dynamically :- Views.Items.Add(new ListItem("StringName","StringValue");
Thanks and Regards Sandeep If you want something you never had, do something you have never done!