<div class="post-text" itemprop="description">
OK, I've written a 2 page application. The first page has a series of dropdownslist and a gridview. The customer selects the product from the dropdownlist, it appears with details in the gridview. I then have 3 textboxes so the user can input the quantity
they desire, their name, and address. At the bottom is a create order button, which currently redirects to the next page.
On that page, however, I'm supposed to have the customer created and the order placed on the screen it's supposed to say that the order was created successfully, and the order number, and I'm supposed to use a procedure called CreateOrder that was submitted
to me for this purpose.
How would I use the submit button to create the customer and the order, and also how would I then generate the OrderID from the stored procedure on the next page
The code below is for the first page.
Go to the complete details ...