ページからデータを投稿し、同じページに結果を表示する方法を知りたいですか? 次のコードを含むコントローラーがあります。最終的にインデックスに向ける別のビュー「結果」を作成しました。
//EmployeeController.cs
public ActionResult Index (List<Employee> employees = null)
{
employees = employees == null
? db.Employees.Include(e => e.Department).ToList()
: employees;
return View(employees);
}
public ActionResult Result(Employee employee, decimal minsal,decimal maxsal)
{
var employees = db.Employees.Include(e => e.Department);
employees = db.Employees
.Where(p => p.DepartmentID == employee.DepartmentID
&& p.Salary > minsal && p.Salary < maxsal);
var empList = employees.ToList();
ViewBag.DepartmentID = new SelectList(db.Departments, "DepartmentID", "DeptName", employee.DepartmentID);
return View("Index", empList);
}
表示: (Result.cshtml)
@model _4th_assignment.Models.Employee
@{
ViewBag.Title = "Result";
}
<h2>Result</h2>
@using (Html.BeginForm())
{
<p>
Select Department: @Html.DropDownList("DepartmentID", "--select--")
</p>
<p>
Enter Salary Range: Min @Html.TextBox("minsal") Max
@Html.TextBox("maxsal")
</p>
<p> <input type="submit" value="Filter" /></p>
}
インデックスページに「給与範囲と部門で従業員をフィルタリングする」というリンクを作成しました。このリンクをクリックすると、[結果] ページに移動し、フィルター処理された結果が [インデックス] ページに表示されます。
表示: (index.cshtml)
@model IEnumerable<_4th_assignment.Models.Employee>
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<p>
@Html.ActionLink("filter the employees with salary range and department ", "Result")
</p>
<table>
<tr>
<th>
@Html.DisplayNameFor(model => model.FirstName)
</th>
<th>
@Html.DisplayNameFor(model => model.MiddleName)
</th>
<th>
@Html.DisplayNameFor(model => model.LastName)
</th>
<th>
@Html.DisplayNameFor(model => model.Salary)
</th>
<th>
@Html.DisplayNameFor(model => model.Department.DeptName)
</th>
<th></th>
</tr>
@foreach (var item in Model)
{
<tr>
<td>
@Html.DisplayFor(modelItem => item.FirstName)
</td>
<td>
@Html.DisplayFor(modelItem => item.MiddleName)
</td>
<td>
@Html.DisplayFor(modelItem => item.LastName)
</td>
<td>
@Html.DisplayFor(modelItem => item.Salary)
</td>
<td>
@Html.DisplayFor(modelItem => item.Department.DeptName)
</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>
今私がやりたいことは、インデックスページで「従業員を給与範囲と部門でフィルタリングする」というリンクをクリックすると、インデックスページで入力を要求し、結果もインデックスページにのみ表示されるはずです。