我在部分视图中有 TextboxFor,我想显示十进制格式示例(3,108,000.00)。用于显示但希望我通过 Ajax 调用控制器的值为空。感谢您的帮助。
@Html.TextBoxFor(x => x.List_TRNQuotationLeasing.CashBook, new { @class = "numeric form-control right", @Value = Model.List_TRNQuotationLeasing.CashBook != null ? Model.List_TRNQuotationLeasing.CashBook.Value.ToString("#,##0.00") : "" })