I have TextboxFor in partial view,I want to display decimal format example( 3,108,000.00). is work for display but want i call controller by Ajax value is be null. thank for help.
@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") : "" })