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();
}
}
}