问题标签 [html.label]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
12572 浏览

asp.net-mvc - Html.Label 显示电子邮件地址

我正在使用 Html.Label 在我的 MVC 应用程序中显示一些数据。当我尝试显示电子邮件地址时,它无法正确呈现

但我看到的渲染输出是

谁能建议如何使用 Html.Label 显示

0 投票
1 回答
202 浏览

asp.net-mvc - Html.Label 的正确用途是什么?

这个字段 html helper 的正确用途是什么???

我的视图中有以下代码,但是当显示时它并没有像我期望的那样出现。

这是在视图中显示时的输出:

0 投票
4 回答
55665 浏览

asp.net-mvc - 如何从 Html.Label 的模型中获取价值?

我想将模型中的字段(属性)的值放入 Html.Label 中。像这样的东西:

我不想要 item.Title 的标签(如Html.LabelFor( model => model.Title))。但我想将item.Title标签中的值作为文本(字符串)。所以运行时的结果应该是这样的:

我怎样才能做到这一点?

0 投票
0 回答
193 浏览

c# - Set Label Text For selected Dropdown

I have a form where you select a file out of a Html.dropdownlist.

The Model.DownloadFiles have the following properties Reference, Name, and CreatedDate

Further along my code, I have the following(Took the first Element's creation date for now):

Question is how do I change the CreationDate text of the label whenever I change the Dropdown? So whenever I change the dropdown it should take the CreationDate of Model.DownloadFiles wherever it is equal to the selected reference and display it in the label.

Thank you in advance