public ActionResult VolunteerJson() { string volunteerType = Request["volunteerType"].UString(); int volunteerPeople = Request["volunteerPeople"].Uint(); int activeID = Request["ActiveID"].Uint(); var obj = siteService.AddVolunteer(volunteerType, volunteerPeople, activeID); return(Json(obj)); }