Lab_09 IAD Problem Statements

Problem 1

Develop an asp .net page that displays a list of options with check boxes (Use CheckBoxList web control).
On clicking a button (web control), the page displays the selected options in a label control

Problem 2

Develop a page that displays two text boxes and a button web control. The textboxes are used to capture number of rows and number of columns from user.

  1. Configure the table appearance. This could also be performed in the .aspx file, or in the create_Click event handler.
  2. Create table.
  3. Iteratively create a new TableRow object.
  4. Put the TableRow in the Table.
  5. Iteratively create a new TableCell object.
  6. Create a new Label object. Display row, col numbers on label.
  7. Add label and image in cell.
  8. Optionally adjusted border style and width.
  9. Put the TableCell in TableRow

Quiz

Create a web page consisting of radio buttons such that when one is selected and the submit button is clicked, the radio button is removed from the list.