Skip to content

This project is a simple E-Commerce website based on ASP.NET MVC

Notifications You must be signed in to change notification settings

IshtiaqueIrteza/E-Commerce-Website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

E-Commerce Website:

This project is a simple E-Commerce website based on ASP.NET MVC 5

Features:

  • User can register, buy products, see his shop history.
  • Admin can insert, update, and delete products, view transaction history, top users etc.
  • The whole project is based on Entity Framework, Linq, and Lambda expression.
  • Also with some basic ADO.Net and Layered Architecture

Language used : asp.net (MVC)

Database : Microsoft SQL Server 2012

How to run the project :

  1. Import the database (ProductDB.bacpac) file to Microsoft SQL Server ar first.
  2. In visual studio, add the solution or project.
  3. Modify the Connection String as you needed to connect to database. Go to (inside project) : PMApp/Web.config. At the last portion, you'll find the connection string like below :
<connectionStrings>
    <add name="ProductDBContext" providerName="System.Data.SqlClient" connectionString="data source = .\SQLEXPRESS; initial catalog = ProductDB; user id = SA; password = 1234;"/>
  </connectionStrings>
  • Check on the internet how to write or change Connection Strings, change your data source, user id, password as needed. Or provide Windows Authentication , as your wish.
  1. Some word of wisdom : This is a very basic project in ASP.NET. My intention to upload this so that beginners can learn from it, get some idea for their project.

    Enjoy !!