0

我在控制器中有 2 个按钮和 2 个动作,单击一个按钮我需要处理一个动作,另一个按钮单击我需要处理另一个动作,我该如何实现

我给了不同的值和相同的名字

<input type="Submit" class="button" value="Search" name="btnName" />

<input type="Submit" class="button" value="Save" name="btnName" />
4

1 回答 1

0

您必须使用 Html.Action 链接

@Html.ActionLink("Save", "NameOfAction", "NameOfController")

这是一个ajax链接

    Ajax.ActionLink(
        "Save",
        "NameOfAction",
        "NameOfController",
        new { id = "AnyIdIfNeeded" },
        new AjaxOptions
        {
            OnFailure = "JavascriptThatHandlesFailed",
            HttpMethod = "GET",
            UpdateTargetId = "SomeDivIdToUpdate",
            LoadingElementId = "IdOfDivThatShowsLoading",
            OnSuccess = "JavascriptMethodThatHandlesSuccess"
        }
        ).ToHtmlString());

一个简单的表格

using (Html.BeginForm("ManageRoles", "ManageRoles", FormMethod.POST, new { id = "SearchForm" }))
{
   <a href="javascript:void(0);" onclick="document.getElementById('SearchForm').submit();">Save</a>
}
于 2012-07-27T06:32:36.690 回答