How can I keep my model in my View after OnPost?
问题 I'm on a project with .Net Core and I'm using ASP Razor Pages. In my model, I have an OnGet which load all the data I need in my view. public IList<Projet> Projets { get; set; } public ActionResult OnGet() { Projets = _serviceSelect.getProjets(); return Page(); } Then, in my OnPost which is activated when I submit my form. <form method="post"> <div asp-validation-summary="All" class="text-danger"></div> <input type="radio" value="1" asp-for="LoginData.TypeCompte" />choice<br /> Username: