Is it possible to change the display the contents of an HTML page on basis of selection of a particular field.
I have an xyz.asp page which fetches names of users from a database in a combobox while loading the asp page. Now on selection of this combo value it should display the details of the user on the same page.
1. You first display the list of users. 2. A single name is selected by a user. 3. After the page is posted back, you retrieve the username selected using Request.Form or Request.QueryString. 4. Create a connection and recordset object, build an SQL query so that everything for *that* username gets selected. 5. Simply show the data to the user.