csharp 使用PUT或DELETE覆盖html表单方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用PUT或DELETE覆盖html表单方法相关的知识,希望对你有一定的参考价值。

@using (Html.BeginForm("Order", "Users"){ 
   @Html.HttpMethodOverride(HttpVerbs.Delete)
}

http://stackoverflow.com/questions/8835450/use-delete-form-method-in-html-beginform

以上是关于csharp 使用PUT或DELETE覆盖html表单方法的主要内容,如果未能解决你的问题,请参考以下文章

post、get、put、patch、Delete的区别

让python bottle框架支持jquery ajax的RESTful风格的PUT和DELETE等请求

Rest模式get,put,post,delete含义与区别(转)

在 Web Api 中使用 Put 或 Delete 方法时,我有啥替代方法来避免 405 Method Not Allowed 错误?

应该在表单中使用 PUT 和 DELETE 吗?

PUT 和 DELETE HTTP 请求方法有啥用处?