如何在 Visual Studio 2012 中使用 C# 将表单中提交的信息显示回 MVC 应用程序中的视图?用户单击“提交”后,我希望该名称显示在确认信息的消息中。收到了。请注意,我现在只使用视图和控制器,而不是模型。
这是视图:
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
</head>
<body>
<div>
@using (Html.BeginForm()) {
<div>First Name @Html.TextBox("First Name")
Last Name @Html.TextBox("Last Name")
</div>
<input type="submit" name="submit" />
}
</div>
</body>
</html>
这是控制器:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MvcCheeseSurvey.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}