Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
税範囲のテーブルを作成しました。ここで、次のようにフォーマットされた金額を表示したいと思います$100,000。これどうやってするの?
$100,000
この形式を試して、金額をカスタム値に置き換えることができます。
@string.Format("{0:C}", amount);
これをモデルに追加できます。そのフィールドを参照するたびに通貨記号が表示されます
[DisplayFormat(DataFormatString = "{0:C}", ApplyFormatInEditMode = true)] public decimal DebitAmount { get; set; }