download online shopping website in asp.net

Free 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

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 :

Now, No need to buy project. Now it is Free. If need any help contact us on meeraacademy@hotmail.com.
We provide this free project for students, only for educational purpose.


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. get this exception when I tried to run in VS 2012 kindly help, please

    Cannot open database “OnlineShop” requested by the login. The login failed.
    Login failed for user ‘DESKTOP-SBFCRKL\Shaharyar Parekh’.

    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

    Exception Details: System.Data.SqlClient.SqlException: Cannot open database “OnlineShop” requested by the login. The login failed.
    Login failed for user ‘DESKTOP-SBFCRKL\Shaharyar Parekh’.

    Source Error:

    Line 781: this.Adapter.SelectCommand = this.CommandCollection[0];
    Line 782: DS_CAT.CATEMST_SELECTDataTable dataTable = new DS_CAT.CATEMST_SELECTDataTable();
    Line 783: this.Adapter.Fill(dataTable);
    Line 784: return dataTable;
    Line 785: }

    Source File: c:\Users\Shaharyar Parekh\AppData\Local\Temp\Temporary ASP.NET Files\onlineshoes\11df693e\771d1f70\App_Code.rcz9orfq.2.cs Line: 783

    Stack Trace:

    [SqlException (0x80131904): Cannot open database “OnlineShop” requested by the login. The login failed.
    Login failed for user ‘DESKTOP-SBFCRKL\Shaharyar Parekh’.]

    1. Check sqlconnection string in web.config file. Change the sql server Data Source=”Your SQL Server Name” name instead of “Data Source=.\sqlexpress” in web.config file.

  2. Some stored procedures are missing. I don’t know how to create the missing stored procedures from the above video. Can you please attach the code of the missing stored procedures please. I’ll pay if you want me to.

    1. Only one stored procedure missing in above video.

      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

    1. CREATE PROCEDURE [dbo].[ORDER_SELECT_BY_Uname_ITEM]

      @uname as nvarchar(256),
      @iname as nvarchar(256)
      AS
      BEGIN
      SELECT * FROM OrderMst where Uname=@uname and Iname=@iname and Status=0

      END

  3. some stored procedures are missing how can i create missing procedures kibdli send me all missing stored procedures

Leave a Reply

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