write in c# using visual studios
Quotation confirmation Send confirmation to Open the web application for this exercise and start enhancing its pages 1. Open the web application named XEX04Quotation that you downloaded from the Module 4 area of the site. It includes the aspx an code-behind files for the pages shown above, but the first page doesn't have the code for the Confirm button and the second page doesn't have the code for either of the buttons that are shown. And neither page has the code for the labol with the message that's displayed below the buttons. 2. Add the Confirm button to the Quotation page right after the Calculate button and set its CssClass proporty to the btn and btn- primary classes 3. Add the Send Quotation and Return buttons to the Confirmation page, and set the appropriate CssClass values. Also, set the properties for the Return button so it goes back to the Quotation page and doesn't cause validation 4. On each page, add a label control below the buttons. For each label, set the ID to lbl Message, the CssClass to text-info, and the Text as shown above 5. Test the application to soo how it's going, and make any adjustments. Add the C# code that makes the application work 1. Create a Click event handler for the Confirm button of the Quotation page. This button should redirect to the Confirmation page, which will display the quotation that is being confirmed by getting the data from session state. 2. To make this work, the Click event handler for the Calculate button of the Quotation page should save the sales price, discount amount, and total price in session state. Now, add that code to that event handler. 3. When the user clicks the Confirm button on the Quotation page to go to the Confirmation page, the Load event handler for the Confirmation page should get the data from session state and display it as shown above. Now, add that code to the Load event handler. 4. Add an event handler for the Click event of the Send Quotation button. If the entries for this form are valid, this handler should use the data entered by the user to display a message below the buttons that says: "Quotation sent to
at at