ASP.NET Core MVC web application built with C# that calculates discount amounts and final totals based on user-entered sales subtotals and discount percentages
The Price Quotation Web App allows users to:
- Enter a sales subtotal and discount percentage
- Calculate the discount amount
- Display the final total after discount
- Validate user input and display error messages
- Reset the form to its default state
This project was developed as part of a Computer Information Technology course and follows industry-standard ASP.NET Core MVC practices.
- ASP.NET Core MVC architecture
- C# model with calculated properties
- Razor View model binding
- Server-side form validation
- Validation summary for user-friendly error reporting
- Clear form functionality
- Custom CSS styling
- Responsive layout using Razor
_Layout.cshtml
- C#
- ASP.NET Core MVC
- Razor Views
- HTML5
- CSS3
- Visual Studio 2026
- Git & GitHub
PriceQuotationWebApp/
├── Controllers/
│ └── HomeController.cs
├── Models/
│ └── PriceQuotation.cs
├── Views/
│ ├── Home/
│ │ └── Index.cshtml
│ └── Shared/
│ └── _Layout.cshtml
├── wwwroot/
│ └── css/
│ └── site.css
├── Program.cs
├── README.md
└── PriceQuotationWebApp.csproj