download online shopping website in asp.net

Online Shoes Shopping Website in ASP.Net C#

In this asp.net tutorial we provide online shopping website project in c# source code with sql server database file for only educational purpose. We also provide download link for use case diagramdata flow diagram ,  Activity Diagram and ER Diagram of online shopping website.


ASP.NET Online Shopping Website

Project Title : Online Shoes Shopping Website Project
Abstract : Online Shopping website with customer and admin module.
Project Type : Web application
Technology : Visual Studio 2010 with C# Language
Database : SQL-Server 2008 Database

The Online Shoes Shopping website is a web based application developed in visual studio 2010 using c# language, which helps consumer to find latest shoes with different patterns on internet. This website allow people to directly buy latest shoes from website.

Online Shoes Shopping project has main two module :  Customer and Admin.

The customer is a user who want to buy products from our website. For buy shoes user need to register first and after he can buy product and finally make a online payment for confirm the order. After confirm order user gets shoes on his delivery address.

The Admin is a responsible person to run the website, or we can say the owner of a website. Admin can manage all products, customer detail and order detail. Admin can add, delete and update any information regarding to shoes.


Video Tutorial – Online Shopping Website Project


Online Shopping Website Project Modules

In this online shopping system there are main two modules :

Admin : Admin is a responsible person to run the whole system. Admin can add, delete, update all information related to system like category, item information, order information.
User / Customer : User is a visitor, who visit the site and buy something from our website by making a online payment.
Both user and admin have different task in online shopping system. lets describe each module task with short description below.

Admin site module

  • Login module
  • Manage Category
  • Manage Item
  • Manage user
  • Manage order
  • Manage Reports

User site module

  • Registration
  • Login
  • Make Order
  • Make Payment
  • Manage Account
  • Change Password

Online Shopping Website Database Dictionary


In Below Online Shopping Website Database file some Stored Procedures are missing. We provide video tutorial for missing stored procedure, please find out missing stored procedure and add it in database for smoothly run online shopping website project.

Video for Stored Procedure of Online Shopping Project


Download Online Shopping Website in ASP.Net

Download asp.net project with source code  Online Shopping
Download Online Shoes Shopping Website in ASP.Net Download Layout1
Download Online Shoes Shopping Website in ASP.Net Download Layout2
Download SQL-Server Database File. Download Database
Download System Flow Chart Diagram Download Flow Chart
Online Shopping Website System Data Flow Diagram Download DFD
Online Shopping Website Use Case Diagram Download Use Case
Online Shopping Website System Activity Diagram Download Activity
Online Shopping Website E-R Diagram Download ER-Diagram

Project Tips :


Buy Project :

Contact us on meeraacademy@hotmail.com for buy full project with source code and database.


Download and Run Project Demo :

Learn how to download and run c# .net project with source code. Project Demo


Subscribe us

If you liked this c# post, then please subscribe to our YouTube Channel for more Project video tutorials.

We hope that this asp.net project tutorial helped you to understand Online Shopping Website Project.

204 thoughts on “download online shopping website in asp.net

    1. /****** Object: StoredProcedure [dbo].[USER_INSERT] Script Date: 04/26/2018 13:47:05 ******/
      SET ANSI_NULLS ON
      GO
      SET QUOTED_IDENTIFIER ON
      GO
      CREATE PROCEDURE [dbo].[USER_INSERT]

      @NAME AS NVARCHAR(256),
      @SURNAME AS NVARCHAR(256),
      @ADD AS NVARCHAR(256),
      @CITY AS NVARCHAR(256),
      @PIN AS NVARCHAR(256),
      @MOB AS NVARCHAR(256),
      @EMAIL AS NVARCHAR(256),
      @PASS AS NVARCHAR(256)

      AS
      BEGIN
      INSERT INTO UserMst VALUES(@NAME,@SURNAME,@ADD,@CITY,@PIN,@MOB,@EMAIL,@PASS,GETDATE())
      END
      GO

  1. Could not load file or assembly ‘CrystalDecisions.CrystalReports.Engine, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304’ or one of its dependencies. The system cannot find the file specified.

    I’m getting this error. Help

    1. CREATE PROCEDURE [dbo].[ORDER_UPDATE_CART]
      @oid as int,
      @qnt as int,
      @tprice as float
      AS
      BEGIN
      update OrderMst set Qnt=Qnt+@qnt,TPrice=TPrice+@tprice where OID=@oid
      END

Leave a Reply

Your email address will not be published. Required fields are marked *