1

我正在处理一个 MVC 项目,我想传递一个 FormCollection,填充表单数据,并将其发布到我的控制器中的操作方法。这是视图的示例:

<asp:TextBox ID="txtClientLastName" name="txtClientLastName" runat="server" class="focus"/>

(是的,我知道!MVC 视图中的 ASP 控件并不好,但这就是我所拥有的。标签之间的视图中也有后端代码,这就是我没有替换它们的原因)

我使用助手链接到我的操作:

<%=Html.ActionLink("Save","ClientInformationEdit",new {id=Model.PersonId})%

这要求我采取行动:

 public ActionResult ClientInformationEdit(int id, FormCollection form)
   {
        //rptLOA_GridCommands(form, id);

       CIHelper ch = new CIHelper();


       ch.person.LastName = form["txtClientLastName"]; 
       db.SaveChanges();

        return View(ch);
    }

我不passes the correct value but FormCollection form is null so form["txtClientLastName"] is null and I don知道为什么。

4

2 回答 2

0

添加 post 属性,如下所示:

     [HttpPost]
 public ActionResult ClientInformationEdit(int id, FormCollection form)
   {
        //rptLOA_GridCommands(form, id);

       CIHelper ch = new CIHelper();


       ch.person.LastName = form["txtClientLastName"]; 
       db.SaveChanges();

        return View(ch);
    }

如果您想在单击超链接时发布表单,请添加以下代码:

<%=Html.ActionLink("Save","ClientInformationEdit",new {id=Model.PersonId,onclick="document.getElementById('form-id').submit();"})%>
于 2013-05-27T17:46:07.023 回答
0

尝试这个:

@using (Html.BeginForm("Save", "ClientInformationEdit", FormMethod.Post))
{
    <input type="hidden" value="@Model.PersonId"/>
    <asp:TextBox ID="txtClientLastName" name="txtClientLastName" runat="server" class="focus"/>    
    <input type ="submit"/>
}

在你看来

于 2013-05-27T17:55:21.487 回答