[AcceptVerbs (HttpVerbs.Post)] / [AcceptVerbs (HttpVerbs.Get)]을 사용하여 액션을 꾸밀 수 있습니다.
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(string title)
{
// Do Something...
}
또는 [HttpPost] / [HttpGet] 속성 사용
[HttpPost]
public ActionResult Create(string title)
{
// Do Something...
}
다른가요?