私は次の見解を持っています:
<h2>enter the student name to search</h2>
@using (Html.BeginForm())
{
<label>Search:</label>
<input type="text" name="searchString" />
<input type="submit" name="submit" />
}
ビューは次のコントローラーに対応します
namespace Searching.Controllers
{
public class SearchController : Controller
//somecode
[HttpPost]
public ActionResult SearchIndex(FormCollection formCollection)
{
string searchString=formCollection["searchString"];
var search = from m in db.Searches select m;
if (!String.IsNullOrEmpty(searchString))
{
search = search.Where(s => s.Name.Contains(searchString));
}
return View(search);
}
}
}
コントローラー名は SearchController.cs で、フォームを渡すメソッドの名前は SearchIndex です。Html.BeginForm() 内のパラメーターは何であるべきか。私は初心者です。