0

我有一个 TextBoxFor 用于表示货币,每种货币的小数点会因货币而异。所以我需要从服务器端传递每种货币的小数点。这就是我尝试过的 -

Server Side
ViewBag.decimalplace = "2"; //this may vary 2 or 3  according to currencies

Client Side
@{ var regex = string.Format(@"^\d+,\d{{0,{0}}}$", ViewBag.decimalplace); }
@Html.TextBoxFor(model => model.SourceCurrencyValue, 
new { data_val_regex_pattern = regex, data_val_regex = "Error message" })

不幸的是,这不起作用。我哪里出错了?

4

0 回答 0