object IModelBinder.BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext) { MBTest instance = new MBTest(); instance.Name = controllerContext.HttpContext.Request["Name"]; instance.Name = _service.SayHello(); return instance; }
public ActionResult Index(MBTest test) { ViewBag.SayHello = "Hello " + test.Name; return View(); }