Problem Statement
Design and implement two ASP.NET web pages. The first page should contain a ListBox control that displays a list of popular programming languages. When the user selects a language, a corresponding introductory message should be shown in a Label control. Only one selection should be permitted at a time. The second page should allow the user to dynamically generate a table by selecting the number of rows and columns from two DropDownList controls. Upon clicking a Generate button, the table should be rendered with specific constraints: the first cell in each row should include a DropDownList of languages (Urdu, English, Arabic, Chinese), all other cells (except the last row) should show coordinates in the format {row, column}, and the last row should display RadioButtonLists in each cell with numeric options 1 to 4, with the background of the last row shaded grey and the table border colored red.
Code Implementation Report