[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...
}
彼らは違うのですか?