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
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.
On clicking button, generate a table with r rows and c columns. In each cell, display row,col values.
Optionally, add features of borders and image in each cell.
Configure the table appwarance. This could also be performed in the .aspx file, or in the create_Click event handler.
Create table.
Iteratively create a new TableRow object.
Put the TableRow in the Table.
Iteratively create a new TableCell object.
Create a new Label object. Display row, col numbers on label.
Add label and image in cell.
Optionally adjusted border style and width.
Put the TableCell in TableRow
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.