簡體   English   中英

無法識別十進制 ASP.NET

[英]Decimal not recognized ASP.NET

我正在嘗試以一種形式插入十進制數,但沒有成功。 每次,我都會得到這個:

錯誤

我的實體聲明如下:

public class Serie
{
    public int Id { get; set; }
    public string Name { get; set; }

    [RegularExpression(@"^\d+\.\d{0,2}$")]
    [Range(0, 9999999999999999.99)]
    public decimal Price { get; set; }
    public string Description { get; set; }
    public List<Season> Seasons { get; set; }
    public List<Rental> Rentals { get; set; }
    public List<Assessment> Assessments { get; set; }

}

在我的 razor 頁面上,我在 html 方面有這個:

@page
@model Shows4All.Pages.Series.CreateModel

@{
    ViewData["Title"] = "Create";
}

<h1>Create</h1>

<h4>Serie</h4>
<hr />
<div class="row">
    <div class="col-md-4">
        <form method="post">
            <div asp-validation-summary="ModelOnly" class="text-danger"></div>
            <div class="form-group">
                <label asp-for="Serie.Name" class="control-label"></label>
                <input asp-for="Serie.Name" class="form-control" />
                <span asp-validation-for="Serie.Name" class="text-danger"></span>
            </div>
            <div class="form-group">
                <label asp-for="Serie.Price" class="control-label"></label>
                <input type="number" asp-for="Serie.Price" class="form-control" />
                <span asp-validation-for="Serie.Price" class="text-danger"></span>
            </div>
            <div class="form-group">
                <label asp-for="Serie.Description" class="control-label"></label>
                <input asp-for="Serie.Description" class="form-control" />
                <span asp-validation-for="Serie.Description" class="text-danger"></span>
            </div>
            <div class="form-group">
                <input type="submit" value="Create" class="btn btn-primary" />
            </div>
        </form>
    </div>
</div>

<div>
    <a asp-page="Index">Back to List</a>
</div>

@section Scripts {
    @{await Html.RenderPartialAsync("_ValidationScriptsPartial");}
}

我已經嘗試過在 html 端沒有數據注釋和沒有 type="number" ......但它不起作用。 知道如何解決嗎?

嘗試在 aspet.config 文件中添加語言環境配置,如下所示:

  <configuration> 
      <system.web>
          <globalization culture ="en-US" />
      </system.web>
  </configuration> 

如果不起作用,請嘗試刪除 Regex 屬性並再次測試。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM