我有一个关于 MVC4 (Razor) 的问题。我有要过滤数据的页面。有一个文本框(输入)和一个提交按钮。我想将文本框中的文本移动到操作结果。我该如何解决这个问题?
在我的页面上,我有以下行:
@{ using (Html.BeginForm("Experiences"))
{
<span class="label">Filter on:</span><input id="FilterText" type="text" size="50"/>
<input type="submit" value="Submit" name="knowledge" /><br />
}
}
<br />
我想调用 ActionResult Experiences
public ActionResult Experiences(string knowledge = "")
{
ReadExperienceData(knowledge);
return View(ListOfExperiences);
}