如何在显示属性、名称字段中添加新行

发布于 2024-11-27 04:43:43 字数 371 浏览 4 评论 0原文

我正在开发 MVC3 应用程序,并使用数据属性作为屏幕上的显示名称字段。下面是一个代表性示例 -

    [Required]
    [Display(Name = "Staff Id (format \"9999\")")]
    [StringLength(10)]
    [UIHint("StaffId")]
    public string StaffId { get; set; }

我想要做的是将名称显示在两行中,并在“Id”文本之后换行。所以它会显示为

   Staff Id
   (format "9999")

Is there a way to do this?

I'm working on an MVC3 application and am using data attributes for the display name fields on the screen. Below is a representative sample -

    [Required]
    [Display(Name = "Staff Id (format \"9999\")")]
    [StringLength(10)]
    [UIHint("StaffId")]
    public string StaffId { get; set; }

What I would like to do is to have the name display on two lines with line break right after "Id" text. So it would display as

   Staff Id
   (format "9999")

Is there a way to do this?

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

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

发布评论

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

评论(2

四叶草在未来唯美盛开 2024-12-04 04:43:43
[Required]
[Display(Name = "Staff Id<br/>(format \"9999\")")]
[StringLength(10)]
[UIHint("StaffId")]
public string StaffId { get; set; }

在您的 StaffId.cshtml 自定义编辑器模板中:

@model string
@Html.Raw(ViewData.ModelMetadata.DisplayName)
@Html.TextBox("")
[Required]
[Display(Name = "Staff Id<br/>(format \"9999\")")]
[StringLength(10)]
[UIHint("StaffId")]
public string StaffId { get; set; }

and inside your StaffId.cshtml custom editor template:

@model string
@Html.Raw(ViewData.ModelMetadata.DisplayName)
@Html.TextBox("")
迷乱花海 2024-12-04 04:43:43

只需添加@Darin-Dimitrov 答案,重要的是使用

@Html.Raw(your.property)

而不是典型的 HTML 帮助器,例如

@Html.DisplayFor(modelItem=>item.property) -- will not work

Just adding to @Darin-Dimitrov answer, it is important to use

@Html.Raw(your.property)

Instead of typical HTML helpers like

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