Skip to content

RajanMistry88/Asp.Net-Mvc-Tutorials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Asp.Net-Mvc-Tutorials

Live Demo Click here
Video link

In this project I'm using ADO.NET Entity Data Model. If you don't know about Entity Framework Click Here
Create database in SQL Server find database bakup file in folder MvcTutorial >> DataBase >> MvcTutorial.bak and Script file MvcTutorialscript.sql DataBase

onces you create DataBase clone the repository, open web.config file and update connectionStrings with your Sql Credentials and Build the project and run. source=DELL\SQLEXPRESS; -- Server Name you have to replace only server name.
catalog=MvcTutorial; -- DataBase Name is diffrent then you have to replace. or you can delete the Model1.edmx file in Models folder and recreate with the same name using ADO.NET Entity Data Model so it will auto generate Database connectionstring.

connectionStrings:
add name="MvcTutorialEntities" connectionString="metadata=res:///Model1.csdl|res:///Model1.ssdl|res://*/Model1.msl;provider=System.Data.SqlClient; provider connectionstring="data source=DELL\SQLEXPRESS;initial catalog=MvcTutorial;integratedsecurity=True; MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient"

    Topic Cover in this Project
  • (Html.BeginForm, Html.AjaxBeginForm, Model Validation, ViewBag, JQuery, HttpGet, HttpPost, Session Manage)
  • User Registration (Insert Operation)
  • Login (Authentication and Session Managing Operation)
  • Forgot Password (Authenticate and Update Operation)
  • Profile Update (Read and Update Operation)
  • Delete Account (Delete Operation)
  • Logout (Session Dismiss)