An ASP.NET Web Forms book store application built with C#. Users can browse books, add items to a shopping cart, and proceed to checkout.
| Page | Description |
|---|---|
| Default.aspx | Home page |
| Products.aspx | Browse and add books to cart |
| Cart.aspx | View/edit shopping cart |
| Checkout.aspx | Checkout process |
| Login.aspx | User login |
Bookstore-dotnet/
├── Models/
│ ├── Book.cs - Book entity
│ ├── CartItem.cs - Cart item model
│ └── CartList.cs - Shopping cart logic
├── App_Start/
│ ├── BundleConfig.cs - CSS/JS bundling
│ └── RouteConfig.cs - URL routing
├── *.aspx - Page templates
├── *.aspx.cs - Code-behind files
├── Site.Master - Master layout page
├── Web.config - App configuration
└── Jasdeep_BookStore.sln - Solution file
Open Jasdeep_BookStore.sln in Visual Studio and run the project (F5). Requires a SQL Server database connection configured in Web.config.