在mvc中声明标签
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最快的方法,但有更好的选择,具体取决于您想要执行的操作:
控制器
索引视图 - 访问如下所示的值:
如果您使用表单视图模型,您可以在类中设置显示名称,然后使用 html 帮助程序生成您的表单项,它将根据您设置的内容自动创建标签。
Quickest way, but there are better options depending on what you want to do:
CONTROLLER
INDEX VIEW - ACCESS THE VALUE LIKE THIS:
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.