Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
248 views
in Technique[技术] by (71.8m points)

ASP.net Core 3.1 MVC View issue

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...