Insert and Get value multi checkbox box list using MVC 5
Insert and Get value multi checkbox box list using MVC 5 [HTTPGET] ========================= [HttpGet] public ActionResult UserProfile() // Show form data page load time { ProfileViewModel obj = new ProfileViewModel(); string username = Convert.ToString(Session["Username"]); SignUp objsignup = db.signUp.Where(x => x.Username == username).FirstOrDefault(); List<Hobbies> objSelectedHobbies = FillHobbies(); if (!string.IsNullOrEmpty(objsignup.Hobbies)) { string s = objsignup.Hobbies; string[] values = s.Split(','); ...