Click here to Skip to main content
15,891,840 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am working on Online Exam project.
which have multiple question having 4 option to each question.
For this I have taken one listbox for displaying questions with options.
For options i have taken checkboxes.
Then could u please tell me how to check one option at a time .
And how to retrive listview data with option and also how to insert into access table.
Posted
Updated 9-Jul-10 19:28pm
v2

1 solution

Try something like:
C#
foreach (ListViewItem item in myListView.Items)
{
  CheckBox i = (CheckBox)item.FindControl("listCheckBoxField");
}
 
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