http://msdn.microsoft.com/en-us/library/system.web.mvc.httpdeleteattribute.aspx メソッドがHTTP DELETE要求のみを処理するようにアクションメソッドを制限するために使用される属性を表します。HttpDelete属性とは何か
しかし、それは一例 MVC
@Html.ActionLink("delete", new {id= model.PrimaryKey})//
ために一体何を意味するのは、削除要求ということですか?どのブラウザが
[HttpDelete] //what is this how does it know?
public action result delete()
{
delete();//web service deletes something just go with me here
}
public action result gridDisplay()
{
return view()
}