Crud operation using Ajax in ASP.NET MVC
1. Crud operation using Ajax in ASP.NET MVC i) Create a table ii) Create a new application in VS iii) Add new Ado.net entity data model class in the model iv)select EF Designer from the database v) Add new Connection vi) select server and database name then click on ok Click on next vii) select entity framework version then select next viii) choose the database object which do you want to include in your model then select finish ix) Build the solution x) update /install jquery and datepicker using Nuget package Manger xi) install jquery xii) install bootstrap datepicker install jquery ui xiii) Add Controller named employee xiv) Add Mvc 5 controller empty 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 ...