IF i have 3 courses for employee Michel
c# remove button
SQL remove button
asp.net remove button
save button
I need when click remove button for SQL course remove it by jquery from client side then when click save button remove it from EmployeeCourse table in database in sql server
i use this model
function retrieve data in controller
public JsonResult getcoursesbyempid(int x) { db.Configuration.ProxyCreationEnabled = false; var data = db.EmployeeCourses.Where(a => a.EmployeeId == x).Join(db.Courses, a => a.CourseId, b => b.Id, (a, b) => new { Id = a.CourseId, CourseName = b.CourseName }); return Json(data, JsonRequestBehavior.AllowGet); } so that i need after retrieve data in edit view do two taskremove course by jquery if iremoved sqlthen remove the course from database in table EmployeeCoursehow i do that by code jquery and c# controllerEmployeeCourse table have three fieldsId,CourseId,EmployeeIdCourse Table have Id,CourseName1 c#2 sql3 asp.netEmployee Tablehave Id,Name
so that i need after retrieve data in edit view do two task
remove course by jquery if iremoved sql
then remove the course from database in table EmployeeCourse
how i do that by code jquery and c# controller
EmployeeCourse table have three fields
Id,CourseId,EmployeeId
Course Table have
Id,CourseName
1 c#
2 sql
3 asp.net
Employee Table
have Id,Name