मैं [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...
}
क्या वे अलग हैं?