1

我必须到需要以货币格式显示项目金额的页面。第一个是输入货币的地方,第二个是显示货币的地方。

我希望 EditorFor 显示一个 R 表示的 Rands,然后我希望该值为十进制。

这是我的编辑器:

<div class="editor-field">
    @Html.EditorFor(model => model.TransactionModel.Price)
</div>

我尝试了许多不同的方法,但都无法正常工作。

对于下面的示例,它不知道第二行中的“CurrencyPrice”是什么。

var CurrencyPrice = '@Model.TransactionModel.Price';
document.getElementById('TransactionModel.Price').value = '@string.Format("{0:C}", CurrencyPrice)'; 

我也在我的 transactionModel 中尝试过这些:

//[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:c}")]
//[UIHint("Currency")]
//[DisplayFormat(DataFormatString = "{0:F2}", ApplyFormatInEditMode = true)]
//[DataType(DataType.Currency)]
public decimal Price { get; set; }

有人可以告诉我如何才能做到这一点吗?

现在我会接受任何工作方法。

4

2 回答 2

2

使用 MVC 4,您可以使用包含格式字符串的 TextBoxFor 方法:

@Html.TextBoxFor(model => model.TransactionModel.Price, "{0:c}")

在 MVC 3 及以下版本中:

@Html.TextBoxFor(model => model.TransactionModel.Price, 
    new { @Value = model.TransactionModel.Price.ToString("c") })

EditorFor可能会或可能不会工作。就个人而言,我遇到了问题。如需更多灵感,请参阅此答案

于 2013-07-24T12:51:25.580 回答
0

我无法让上述内容为我工作。这是我提出的在模型上使用数据注释的解决方案。

[Required]
[DisplayName("Average Yearly Salary")]
[Numeric]
[RegularExpression(@"^\$?\-?([1-9]{1}[0-9]{0,2}(\,\d{3})*(\.\d{0,2})?|[1-9]{1}\d{0,}(\.\d{0,2})?|0(\.\d{0,2})?|(\.\d{1,2}))$|^\-?\$?([1-9]{1}\d{0,2}(\,\d{3})*(\.\d{0,2})?|[1-9]{1}\d{0,}(\.\d{0,2})?|0(\.\d{0,2})?|(\.\d{1,2}))$|^\(\$?([1-9]{1}\d{0,2}(\,\d{3})*(\.\d{0,2})?|[1-9]{1}\d{0,}(\.\d{0,2})?|0(\.\d{0,2})?|(\.\d{1,2}))\)$", ErrorMessage = "The value must be in currency format ")]
[StringLength(12)]

我在这里从 JohnM 那里得到了 RegEx 。

这对每个人来说都不应该这么难!我很惊讶我不得不在 ASP.NET 应用程序中验证货币方面付出如此多的努力!!!本来应该花 30 秒的时间,却花费了数小时的研究和测试。

于 2016-01-05T19:06:19.527 回答