J.D

Bookstore dotnet
Basic Bookstore eCommerce site using ASP.net pages for processing and validation of data.
JavaScriptC#ASP.NETCSS

BookStore

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.

Features

Technologies

Pages

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

Project Structure

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

How to Run

Open Jasdeep_BookStore.sln in Visual Studio and run the project (F5). Requires a SQL Server database connection configured in Web.config.