在控制器上找不到公共操作方法

时间:2013-08-20 20:48:15

标签: c# html5 asp.net-mvc-4 razor

随机获取公共方法未找到错误(并非总是如此)。 是否有可能Html.BeginForm发送HttpGet而不是HttpPost或其他一些动词? 错误:在控制器上找不到公共操作方法“保存”

Razor Code

using (Html.BeginForm("Save", "Product", new { Id = Model.Id }))
{
    //Code
}

C#控制器代码

[AccessDeniedAuthorize, HttpPost]
public ActionResult Save(FormCollection collection, string Id )
{
   //Code
}

0 个答案:

没有答案