28.5.4 따라하기 3: MVC 헬퍼 메서드 사용하기
1. 이번에는 순수 HTML 태그 대신 MVC에서 지원해주는 헬퍼 메서드를 사용해보자. FormValidationDemo 컨트롤러에 HelperMethod() 액션 메서드를 추가로 만들고 같은 이름으로 [HttpPost] 특성을 적용하고, HTML 폼에서 구성할 name 속성과 이름이 같은 매개 변수 두 개를 추가한다.
▼ /Controllers/FormValidationDemoController.cs의 HelperMethod 액션 메서드
#region Helper Method
[HttpGet]
public IActionResult HelperMethod()
{
return View();
}
[HttpPost]
public IActionResult HelperMethod(string txtName, string txtContent)
{
ViewBag.ResultString = $“이름: {txtName}, 내용: {txtContent}”;
return View();
}
#endregion