我是一个初学者,所以请忍受我.
我正在asp.net MVC中传递一个字符串变量.我使用断点,所以我看到它在控制器中正确的方法,但发布的变量等于null.
我的标记:
@{ ViewBag.Title = "TestForm"; } <h2>TestForm</h2> @using (Html.BeginForm()) { <input type="text" id="testinput" /> <input type="submit" value="TestForm" /> }
我的控制器:
public ActionResult TestForm() { return View(); } [HttpPost] public ActionResult TestForm(string testinput) { Response.Write("[" + testinput + "]"); return View(); }
我把断点放在第二个TestForm方法中,而testinput为null ….
我错过了什么吗?
注意:我意识到,大多数时候我将使用模型传递数据,但我想知道我也可以传递字符串.
作为同一问题的一部分,我如何传递几个变量?我的控制器中的方法将如下所示:
[HttpPost] public ActionResult TestForm(string var1,var2) { }