在mvc中声明标签

发布于 2024-11-08 19:34:25 字数 90 浏览 0 评论 0原文

我的 MVC 视图文件夹中的 Index.asp 页面中有一个名为“test”的标签。我希望能够在我的控制器类中更改它的值。有人可以解释如何实现它吗? 感谢您的帮助!

I have a label called "test" in my Index.asp page in my MVC view folder. I want to be able to change the value of it in my controller class. Can someone explain how it can be achieved?
Your help is appreciated!

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

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

发布评论

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

评论(1

等风来 2024-11-15 19:34:25

最快的方法,但有更好的选择,具体取决于您想要执行的操作:

控制器

public ActionResult Index()
{
  ViewData["testValue"] = "new label value";
  return View();
}

索引视图 - 访问如下所示的值:

<label for="test"><%= ViewData["testValue"] %></label>

如果您使用表单视图模型,您可以在类中设置显示名称,然后使用 html 帮助程序生成您的表单项,它将根据您设置的内容自动创建标签。

Quickest way, but there are better options depending on what you want to do:

CONTROLLER

public ActionResult Index()
{
  ViewData["testValue"] = "new label value";
  return View();
}

INDEX VIEW - ACCESS THE VALUE LIKE THIS:

<label for="test"><%= ViewData["testValue"] %></label>

If you use form view models, you can set the display name in the class, and then use the html helpers to generate your form items, which will automatically create your labels based on what you have set them to be.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文