Seattle123
IS-IT--Management
I am creating a web Application that pulls items for sale from a database and presents a list to the user. The Database connection is made via a recordset (in VBScript)
The user then makes a number of selections by choosing a quantity from a pull down box beside each desired item. Currently the list is in the form of a dynamically generated table. A pull down menu next to each item allows the user to select the item qty desired (if any).
What I am trying to achieve is to have the selected items stored and displayed on the next page so the user can edit or accept the list. Also the total price of the items must be calculated, displayed and retained as a subtotal as the user moves from page to page.
The problem is that the list of items is stored in a table which is created when the page is called. As a result, when the page is posted the request object of the called ASP page cannot seem to use request.form(“elementName”) syntax to retrieve the selections
How can this be implemented using ASP (considering the initial list is dynamically generated)
The user then makes a number of selections by choosing a quantity from a pull down box beside each desired item. Currently the list is in the form of a dynamically generated table. A pull down menu next to each item allows the user to select the item qty desired (if any).
What I am trying to achieve is to have the selected items stored and displayed on the next page so the user can edit or accept the list. Also the total price of the items must be calculated, displayed and retained as a subtotal as the user moves from page to page.
The problem is that the list of items is stored in a table which is created when the page is called. As a result, when the page is posted the request object of the called ASP page cannot seem to use request.form(“elementName”) syntax to retrieve the selections
How can this be implemented using ASP (considering the initial list is dynamically generated)