0

您可以看到GET Delete操作方法将 DDW2File 对象传递给查看。是否可以以某种方式将此对象绑定回POST Delete操作方法的ddw2file参数?现在我有空值

代码片段:

public class DDW2FileController : Controller
{
    ...

    public ActionResult Delete(string fileName)
    {
        return View(repository.GetFile(fileName));
    }

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Delete(DDW2File ddw2file)
    {
        repository.Delete(file);
        return RedirectToAction("Index");
    }
}

...

public class DDW2File
{
    public string Name { get; set; }
    public long Length { get; set; }
}

谢谢!

4

1 回答 1

3

假设您的参数名称是 ddw2file 根据您在那里的签名,视图中的表单内的类似内容应该可以工作。

<%=Html.TextBox("ddw2file.Name")%>
<%=Html.TextBox("ddw2file.Length")%>
于 2009-04-22T11:21:26.100 回答