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
- Import the database (ProductDB.bacpac) file to Microsoft SQL Server ar first.
- In visual studio, add the solution or project.
- 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.
-
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 !!