我正在使用 Html.BeginForm 并尝试将文本框“archName”的提供值传递给帖子,我该怎么做?我的意思是我应该添加什么而不是“someString”?
<% using (Html.BeginForm("addArchive", "Explorer", new { name = "someString" }, FormMethod.Post)) { %>
<%= Html.TextBox("archName")%>
我正在使用 Html.BeginForm 并尝试将文本框“archName”的提供值传递给帖子,我该怎么做?我的意思是我应该添加什么而不是“someString”?
<% using (Html.BeginForm("addArchive", "Explorer", new { name = "someString" }, FormMethod.Post)) { %>
<%= Html.TextBox("archName")%>
您所指的名称是表单 HTML 元素的名称属性,而不是发布的值。在您的控制器上,您可以通过几种方式访问。
控制器方法中没有参数:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult addArchive()
{
string archName = HttpContext.Reqest.Form["archName"]
return View();
}
使用FormCollection
控制器方法中的 as 参数:
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult addArchive(FormCollection form)
{
string archName = form["archName"];
return View();
}
使用一些模型绑定:
//POCO
class Archive
{
public string archName { get; set; }
}
//View
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Namespace.Archive>" %>
<%= Html.TextBoxFor(m => m.archName) %>
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult addArchive(Archive arch)
{
string archName = arch.archName ;
return View();
}