3

我有两个视图,一个是 CustomerDetail.cshtml,另一个是 PAymentDetail.cshtml,我有一个控制器 QuoteController.cs。

两个视图都有提交按钮和两个视图的 HTTPPOST 方法都在 QuoteController.cs 中。

[HttpPost]
public ActionResult CustomerDetail(FormCollection form)
{
}

[HttpPost]
public ActionResult PAymentDetail(FormCollection form)
{
}

现在,当我单击付款详细信息的提交按钮时,它正在调用/路由到 CustomerDetail 的 HttpPost 方法,而不是 PAymentDetail。

有人可以帮我吗?我做错了什么?两者的表单方法都是 POST。

4

3 回答 3

4

对于 PaymentDetail,您可以在视图中使用它:

@using(Html.BeginForm("PAymentDetail","Quote",FormMethod.Post)) 
{
  //Form element here 
}

结果html将是

<form action="/Quote/PAymentDetail" method="post"></form>

客户详情也一样

@using(Html.BeginForm("CustomerDetail","Quote",FormMethod.Post)) 
{
  //Form element here
}

希望有所帮助。在同一个控制器中拥有两个 post 方法不是问题,只要这些方法具有不同的名称。

对于 FormCollection 以外的更好的方法,我推荐这个。首先,您创建一个模型。

public class LoginModel
{
    public string UserName { get; set; }
    public string Password { get; set; }
    public bool RememberMe { get; set; }
    public string ReturnUrl { get; set; }

}

然后,在视图中:

@model LoginModel
@using (Html.BeginForm()) {

<fieldset>
    <div class="editor-label">
        @Html.LabelFor(model => model.UserName)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.UserName)
        //Insted of razor tag, you can create your own input, it must have the same name as the model property like below.
        <input type="text" name="Username" id="Username"/>
    </div>
    <div class="editor-label">
        @Html.LabelFor(model => model.Password)
    </div>
    <div class="editor-field">
        @Html.EditorFor(model => model.Password)
    </div>
    <div class="editor-label">
        @Html.CheckBoxFor(m => m.RememberMe)    
    </div>
</fieldset>
  }

这些用户输入将被映射到控制器中。

[HttpPost]
public ActionResult Login(LoginModel model)
{
   String username = model.Username;
   //Other thing
}

祝你好运。

于 2013-08-02T15:05:20.670 回答
1

绝对地!只要确保您发布到正确的操作方法,检查您呈现的 HTML 的form标签。

此外,FormCollection对于 MVC 来说,这不是一个好的设计。

于 2013-08-02T14:46:20.020 回答
0

如果你只想有一个 url,这里是另一种方法:http ://www.dotnetcurry.com/ShowArticle.aspx?ID=724

这个想法是使用表单元素(按钮或隐藏元素)来决定提交了哪个表单。然后您编写一个自定义操作选择器 ( http://msdn.microsoft.com/en-us/library/system.web.mvc.actionmethodselectorattribute.aspx ) 来决定将调用哪个操作。

于 2013-08-03T09:49:48.293 回答