コード例 #1
0
ファイル: ActiveController.cs プロジェクト: yuabd/Activity
        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));
        }