同じビューに複数のボタンを配置する必要がありますが、何らかの理由で機能しません。私はすでに同じ質問を見ましたが、解決策はありません。
ビューでどのボタンが実行されているかを知るにはどうすればよいですか?
意見:
<%@ Page Title="" Language="C#" MasterPageFile="~/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<LIASWeb.Models.Publication>" %>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>NewPublication</h2>
<% using (Html.BeginForm())
{ %>
<div>
<fieldset>
<p>
<label for="Name">Naam:</label>
<%: Html.TextBoxFor(m => Model.nmPublication) %>
</p>
<p>
<%: Html.TextBox("Search", "type naam")%>
<input type="submit" name="btnSearch" value="Zoeken" />
</p>
<p>
<input type="submit" name="btnSave" value="Opslaan" />
</p>
</fieldset>
</div>
<% } %>
</asp:Content>
コントローラ:
public class PublicationController : Controller
{
private Repository repository = null;
public PublicationController()
{
repository = new Repository();
}
public ActionResult NewPublication(String button)
{
if (button == "btnSave")
// perform save action
if (button == "btnSearch")
// perform save action
return View();
}
public ActionResult Index()
{
IEnumerable<Publication> model = repository.Publications;
return View(model);
}
ルーティング:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Publication", action = "Index", id = UrlParameter.Optional }
);
}