1

コントローラーのインデックスで検索を試みて、同じビュー(インデックス)で検索結果を取得しようとしています。これは次のアクションです。

public ActionResult Index(string SeatchParam)
{
 var Employees = db.Employees.Include(e => e.Location).Include(e =>          e.Department).Where(e => e.FirstName.Contains(SeatchParam)|| e.FatherName.Contains(SeatchParam) || e.LastName.Contains(SeatchParam) || e.Location.LocationName.Contains(SeatchParam) || e.Department.DepartmentName.Contains(SeatchParam)).Take(10);
        return View(Employees.ToList());
    }

ビューは次のようになります。

@model IEnumerable<OG.Models.Employee>

@{
ViewBag.Title = "Index";
}

<h2>Search Employees</h2>

<form action="Employee/Index"  method="get">
<input type="text" name="SearchParam" />
<input type="submit" value="Search" />


<p>
@Html.ActionLink("Create New", "Create")
</p>


<table border="10">
<tr>

   <th>
        @Html.DisplayNameFor(model => model.EmployeeId)
    </th>

    <th>
        @Html.DisplayNameFor(model => model.FullName)
    </th>

    <th>
        @Html.DisplayNameFor(model => model.Department.DepartmentName)
    </th>

     <th>
        @Html.DisplayNameFor(model => model.Location.LocationName)
    </th>

    <th></th>
</tr>

@foreach (var item in Model) {
<tr>
    <td>
        @Html.DisplayFor(modelItem => item.EmployeeId)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.FullName)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Department.DepartmentName)
    </td>
    <td>
        @Html.DisplayFor(modelItem => item.Location.LocationName)
    </td>
    <td>
        @Html.ActionLink("Edit", "Edit", new { id=item.EmployeeId  }) |
        @Html.ActionLink("Details", "Details", new { id = item.EmployeeId }) |
        @Html.ActionLink("Delete", "Delete", new { id = item.EmployeeId })
    </td>
</tr>
}

</table>
</form>

検索したところ、結果が見つかりませんでした。AJAXまたはJsonなしでそれを実行できますか?ありがとう、

4

1 に答える 1

2

入力が呼び出されている間、コントローラーに渡さSeatchParamれますSearchParam

だから変更

public ActionResult Index(string SearchParam)
于 2012-11-17T19:51:01.927 に答える