5

我从http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-创建了搜索表单和结果framework-in-an-asp-net-mvc-application使用 PagedList Nuget 包处理分页和排序。

不过,我需要帮助的是如何将搜索表单放在我的母版页上?(_layout.cshtml)?

4

1 回答 1

6

放一个 from 包含一个文本框和一个按钮,表单的操作将是搜索操作

_layout.cshtml页面中的 Ex 代码

@using(Html.BeginForm("ActionName","ControllerName", FormMethod.Get))
{
    @Html.TextBoxFor(m => m.Query)

    <div>
        <input type="submit" value="Search" />
    </div>
}
于 2012-04-22T08:16:04.933 回答