Just trying to port an old MVC app to ASP.net CORE 3.1 in Visual Studio 2019.
In the views (.cshtml pages) the following no longer renders:
<strike><input asp-for="Username" class="form-control" /></strike>
The HTML contains the asp-for and when stuff comes back from to controller model properties are all null
I have to instead use:
@Html.TextBoxFor(model => model.Username,
new { htmlAttributes = new { @class = "form-control", maxlength = "50" } })
Any idea how to get this working? Everything else is working fine
question from:
https://stackoverflow.com/questions/65831233/asp-net-core-3-1-mvc-view-issue 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…