Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how do i insert data of selected radio button list in table
Posted
Comments
[no name] 30-Jan-13 8:38am    
provide some details on ur requiremnt to help u properly :)
Ankur\m/ 30-Jan-13 8:45am    
What data? selected value?
And which table? html? database?
You should consider improving your question and add more detail keeping in mind that we do not know anything about your scenario and the issue you are facing.

1 solution

Try below code

Dim li As ListItem       



For Each li In RadioButtonList1.Items           

If li.Selected = True Then               

//insert into db code      

End If       

Next       
 
Share this answer
 

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