public ActionResult getIntroduction()
 {
     Models.Introduce Introduction = new Models.Introduce();
     ViewBag.result = Introduction.SearchIntroduction();
     return(this.Json(ViewBag.result));
 }
 public ActionResult InsertLocation(Models.Introduction introduce)
 {
     Models.Introduce Introduce = new Models.Introduce();
     Introduce.UserRegister(introduce);
     return(RedirectToAction("../Introduction/InsertIndex"));
 }