In this article of ASP.NET MVC we will learn about login functionality using ADO.NET so let's start. Firstly create Model Class,in my case i create class namely called Employee and hit the code: using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace SignIn_SignUp_Using_AdoDotNet.Models { public class Employee { public int id { get; set; } public string UserName { get; set; } public string UserPassword { get; set; } } } Then create a controller and hit the code below: using SignIn_SignUp_Using_AdoDotNet.Repository; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Data; using System.Data.SqlClient; using System.Web.Mvc; using System.Web.DynamicData; using SignIn_SignUp_Using_AdoDotNet.Models; namespace SignIn_SignUp_Us...
I have shared all Topics about ASP.NET MVC and JQUERY