本文实例讲述了ASP.NET在MVC控制器中获取Form表单值的方法。分享给大家供大家参考,具体如下:
在MVC控制器中,如果我们想直接获取表单中某个标签元素的值,可以使用MVC中提供的FormCollection类,具体用法如下所示:
视图部分:
1
2
3
4
5
6
|
@ using (Html.BeginForm()) { <text>您输入的值是:</text><span>@ViewBag.FormValue</span> <input type= "text" name= "txtName" id= "txtName" value= "" /> <input type= "submit" name= "btnSave" id= "btnSave" value= "提 交" /> } |
控制器部分:
1
2
3
4
5
6
|
[HttpPost] public ActionResult Index(FormCollection formCol) { ViewBag.FormValue = formCol[ "txtName" ]; return View(); } |
希望本文所述对大家asp.net程序设计有所帮助。