http://msdn.microsoft.com/en-us/library/system.web.mvc.httpdeleteattribute.aspx 表示一個屬性,用於限制操作方法,以便該方法僅處理HTTP DELETE請求。什麼是HttpDelete屬性
但到底什麼意思例如 的mvc
@Html.ActionLink("delete", new {id= model.PrimaryKey})//
那是一個刪除請求?如何將瀏覽器的區別
控制器 之間@Html.ActionLink("gridDisplay", 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()
}