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 diagram , data 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
Related Project :
Mobile Shopping Website ASP.Net Project
Online Camera Website ASP.Net Project
Food Ordering System ASP.Net 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 :
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.
Database ‘OnlineShop’ does not exist. Make sure that the name is entered correctly. How do I fix this error?
First create database with ‘OnlineShop’ name in sql server.
Could not find stored procedure ‘dbo.USER_INSERT’. Please help
/****** 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
Can I use Microsoft Access as substitute for SQL Server?
yes, but you have to use OLEDB connection instead of SQL Connection.
How to create Admin Userid and Password
insert username and password manually in AdminMst table.
Could not find stored procedure ‘dbo.USER_SELECT_by_email’.
you have to create stored procedure from above video tutorial.
to start a project which file first open?
for open project : open vs –> file menu –> open –> website –> select project folder and open.
Home.aspx page is first startup page of site.
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
Download and install crystal reports for visual studio.
‘Could not find stored procedure ‘dbo.ITEM_INSERT’.’
you have to create stored procedure manually from above video tutorial.
Cannot find the stored procedure ORDER_UPDATE_CART in the video, please help
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