Click here to Skip to main content
15,890,123 members
Please Sign up or sign in to vote.
1.57/5 (3 votes)
In database i have column named wing in it value is store like this A,B,C,D,E

how i can retrieve value from database into radiobuttonlist separately like below

.A .B .C .D .E

here how i can select any one value like .D and ON BUTTON click event insert only .D in another column ?

i have searched a lot on Google but didn't find example like this can anyone help me
Posted

1 solution

You can bind RadioButtonList[^] to any data source with IEnumerable...
 
Share this answer
 
Comments
Tarun Jaiswal 5-May-14 7:58am    
yes i have binded radiobuttonlist with sql server it result all alphabet together but how i can separate each alphabet with each radio button.
and i dnt knw how to solve this with IEnumerable
Kornfeld Eliyahu Peter 5-May-14 8:00am    
IList<char>, and split your string around commas...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900