我正在开发 MVC 应用程序并使用剃刀语法。
在这个应用程序中,我提供评论功能。
目前评论看起来像......
P Moris9/15/2012 5:40:44 PM
Test comment 1
P Moris9/15/2012 5:40:44 PM
Test comment 2
P moris9/15/2012 5:40:45 PM
Test comment 3
现在,我想在评论所有者的姓名和日期时间之间放置空格。以及如何将 dateTime 转换为
dd-MMM-yy hh:mm tt ?
评论应该看起来像......
P Moris 2012 年 9 月 17 日下午 5:45。
测试评论 1
(我不能在上面的示例中给出一个以上的空间......它会自动删除空间。)
我该怎么办?
我在视图中的代码是
@foreach (var item in Model)
{
<div id="OwnerName">
<span class="EmpName"> @Html.ActionLink(item.Owner.FullName, "Details", "EMployee", new { id = item.OwnerId }, new { @style = "color:#1A6690;" })</span>
@Html.DisplayFor(ModelItem => item.CommentDateTime)
</div>
<p class="CommentP">
@Html.DisplayFor(ModelItem => item.CommentText)
</p>
<br />
}