Good Morning,
I have created an ASP.NET 3.5 webform that allows users to search a parts list. The two textbox controls supply the input paramenters to the stored procedure. The gridview returns the search results from the stored procedure.
I have enhanced the gridview to include a template field with a textbox for Quantity, as well as a button control in the gridview footer to be used to Add the Parts (with quantity) to a quote request.
A user might search for a nail and a hammer, select a nail and input 25 quantity and select a hammer with 1 quantity. These items and quantities must be retained for use in the quote process.
Question: Given my scenario, do you advise storing the gridview quantities, part name etc. in a session? If not, what is the best way to save these items for use later in the quote process?
Thanks, Sid