Tôi có thể trang trí một hành động bằng [AcceptVerbs (HttpVerbs.Post)] / [AcceptVerbs (HttpVerbs.Get)]
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Create(string title)
{
// Do Something...
}
hoặc với các thuộc tính [HttpPost] / [HttpGet]
[HttpPost]
public ActionResult Create(string title)
{
// Do Something...
}
Chúng có khác nhau không?