MVC3 ASP.NET;如何在 input[type="text"] 中添加值?

发布于 2024-10-21 19:22:05 字数 257 浏览 5 评论 0 原文

目前,在我现在的雇主中,我们正在使用 MVC3 ASP.NET 和 Razor。我想你就是这么说的。无论如何,我们的输入字段看起来像这样......

@Html.TextBoxFor(m => m.EmailAddress, new { @class = "text-box single-line" })

现在我明白它在做什么,不需要帮助。我需要帮助来理解如何将值放入它创建的输入字段中。

有人知道怎么做吗?

So currently, at my current employer we are using MVC3 ASP.NET with Razor. I think that is how you say it. Anyways, our input fields look something like this...

@Html.TextBoxFor(m => m.EmailAddress, new { @class = "text-box single-line" })

Now I understand what it is doing, don't need help on that. I need help on understanding how to place an value into that input field that it creates.

Anyone know how?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡写薰衣草的香 2024-10-28 19:22:05

您已经使用 m => 做到了这一点m.EmailAddress

您只需使用该数据填充您的模型:

在您的控制器中:

return View(new MyModel
{
    EmailAddress = "[email protected]",
});

You are already doing that with the m => m.EmailAddress.

You just need to populate your Model with that data:

In your controller:

return View(new MyModel
{
    EmailAddress = "[email protected]",
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文