0

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

    }

}
4

1 回答 1

3

您需要更改您的文本框输入名称(删除空格):

...
...
        @using (Html.BeginForm()) {
        <div>First Name @Html.TextBox("FirstName")
             Last Name @Html.TextBox("LastName")
        </div>
        <input type="submit" name="submit" />
        }
...
...

然后在你的控制器中添加这样的东西:

public class HomeController : Controller
{

    public ActionResult Index()
    {
        return View();
    }

    [HttpPost]
    public ActionResult Index( string FirstName, string LastName )
    {
        return View();
    }

}

标有 [HttpPost] 的动作将在 Post 期间使用,输入值作为 Post 参数发送。

于 2013-09-20T14:11:54.433 回答