0

次のように、LoginRrgister.chtml ページに 2 つのフォームがあります。

@using (Html.BeginForm("Tests1", "Test", FormMethod.Post, 
                       new { id = "FormSearch1" }))
{ 
    <input type ="submit"  value="Filter1 " id="submit" />
}

および次のような別の形式:

@using (Html.BeginForm("Tests2", "Test", FormMethod.Post, 
                       new { id = "FormSearch2" }))
{ 
    <input type ="submit"  value="Filter2 " id="save" />
}

今回はアクション結果をコントローラーに書き込む方法を教えてください。

4

1 に答える 1

0
[HttpPost]    
public ActionResult Test1()
{
    ViewBag.Message = "Your app description page.";
    return View("sameViewForBoth");
}

[HttpPost]    
public ActionResult Test2()
{
    ViewBag.Message = "Your app description page.";
    return View("sameViewForBoth");
}
于 2013-08-17T11:21:09.450 に答える