当支持模型的值为null或为空时,我需要通过 插入@HTML.DisplayFor

我尝试使用数据注释

 [DisplayFormat(ConvertEmptyStringToNull = true, NullDisplayText =" " ]
    public string  MiddleName { get; set; }

确实可以在我期望的位置粘贴一个“”,但是我需要在其中放置一个不间断的空格。

最佳答案

这对我有用:

NullDisplayText = @" ", HtmlEncode = false

关于c# - 当数据为null或为空时,在@ Html.DisplayFor中插入不间断空格? ASP.Net MVC,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21861889/

10-10 02:13