Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C# Please help me! Thank you Build a one-page application with the user interface thats shown below. This time, the user will enter the sales

C#

Please help me! Thank you

Build a one-page application with the user interface thats shown below. This time, the user will enter the sales price and discount percent, and the application will calculate and display the discount amount and total price. If a user entry is invalid, an error message will be displayed to the right of the related text box.

image text in transcribed

Start a new web site and build the form

Start a new web site named XEx02Quotation in your exercises_extra folder.

Add a web form to the project with the name Default.aspx.

Add an h1 heading to the form element with the text shown above.

Add a table to the form below the heading with 8 rows and 3 columns. (The third column will be used for validation controls.)

Add the text and button shown above to the cells in the first, third, fourth, sixth, and eighth rows of the first column.

Adjust the width of the table by dragging its right handle, and adjust the widths of the columns by dragging their right borders so the widths are similar to whats shown above. (It may take some time to get this right, and the form may look different in Design view than it does when you run the application.)

Add text boxes to the first and third rows in the second column, and add label controls to the fourth and six rows in the second column.

Use the Properties window to set appropriate IDs for the controls and to format the first text box and the two labels with bold type. Then, use the Properties window to set the text for the button to Calculate.

Test this form to see how it looks in a browser, and make whatever adjustments are necessary.

Add the C# code for the form

Create an event handler for the click event of the Calculate button. This handler should calculate the discount amount and total price and display them in currency format as shown above.

Test this form to see whether it works correctly, and make whatever corrections are necessary.

Add validators for the text boxes

Add a required field validator in the column to the right of each text box that tests whether an entry has been made in the text box. If an entry hasnt been made, Required should be displayed.

Add a range validator in the column to the right of each text box. The one for the Sales Price should test to see whether the entry is between 10 and 1000, and an appropriate message should be displayed if it isnt. The one for the Discount Percent should test whether the entry is between 10 and 50, and an appropriate message should be displayed if it isnt.

If necessary, adjust the C# code for the page so it only does the calculations if the entries are valid.

Turn off unobtrusive validation for the page. Then, test the application, and make whatever corrections are necessary.

Make any final adjustments

Take a final look at the application, and make any adjustments for improving the look of the application, the operation of the application, or the clarity and logic of the code.

Transfer the website to your Student Serve website WEB180Even.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions