私は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モリス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 />
}