如何将表单中提交的信息显示回给用户

本文关键字:信息 显示 给用户 提交 表单 | 更新日期: 2023-09-27 18:31:51

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

如何将表单中提交的信息显示回给用户

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

...
...
        @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] 的操作将在发布期间使用,输入值将作为发布参数发送。

相关文章: