
How to pass objects from one page to another in ASP.NET Core …
Oct 16, 2017 · I'm developing a web application using ASP.NET Core 2.0 with Razor Pages. I'm creating an object with some data and want to send that object to another page. I'm doing this: …
ASP.NET Core Razor pages vs Full MVC Core - Stack Overflow
Jan 6, 2018 · There has been a question at SO Why is Razor Pages the recommended approach to create a Web UI in Asp.net Core 2.0? where Steve Smith has kindly explained the benefits …
How to redirect on ASP.Net Core Razor Pages - Stack Overflow
I am using the new Razor Pages in ASP.Net core 2 Now I need to redirect I tried this, but the page does not redirect: public class IndexModel : PageModel { public void OnGet() { s...
ASP.NET Razor Page Render Page in Modal Popup - Stack Overflow
Mar 4, 2025 · 0 i am new to ASP.NET Razor Pages and need to implement a Modal Popup which should display another Razor Page. So i have something like an Overview Page …
Why is Razor Pages the recommended approach to create a Web …
Oct 17, 2017 · Razor Pages is the recommended approach to create a Web UI with ASP.NET Core This information confused me in deciding whether I have to stop learning Asp.net Core …
Right way of using asp-page and asp-route in asp.net core razor …
Apr 26, 2020 · Right way of using asp-page and asp-route in asp.net core razor pages between _layout and index page Asked 5 years, 7 months ago Modified 5 years, 7 months ago Viewed …
Authentication via Web API in ASP .NET Core 9 Razor Pages web …
Jan 11, 2025 · So how to login from a Razor Page via Web API in a correct way? P.S. I can post my Program.cs but I don't really know if it's needed. UPDATE. With help of @JerdineSabio we …
asp.net core - Razor Pages routing with @page - Stack Overflow
Sep 8, 2024 · The Razor Pages routing using the @page directive seems to rewrite the links. I've created a "ASP.NET Core Web App (Razor Pages)" application using the template: dotnet …
Authorization in ASP .NET Core Razor pages - Stack Overflow
Aug 13, 2019 · I am unable to implement policy-based authorization in ASP .NET Core for an action on a razor page. I read through this comprehensive document on authorization and …
Runtime Compilation of Razor Pages Does Not Work .NET 8 VS2022
Mar 25, 2024 · I looked at some previous answers, for example this: Razor Page Runtime Compilation not working (accepted solution concerning RazorCompileOnPublish setting does …