[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...
}
彼らは違いますか?