Razor pages do not use the same layout pages as mvc views. The identity pages and layouts are built into the identity package. You need to override the default razor pages.
See layout section of scaffolding
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am currently working on an ** MVC Core project using .Net8 preview**. Everything on the project works fine except the pages included after scaffolding identity. i.e Login, Register etc. When I navigate to login\Register page for example, the default layout of my app doesn't load. Meaning my navbar and footer is not displayed. Instead a blank navbar is displayed with nothing but the project name and Login/Register button at top. But on all the razor views everything works find.
What I have also noticed is that if I try to edit the Login.cshtml page, the changes doesn't reflect on the UI. (Not related to HotReload). Even if I clean, rebuild or restart visual studio, the changes don't reflect when login page is loaded. For example I modified this simple h2 on login.cshtml
From
<h2>Use223 a local account to log in.</h2>
To
<h2>Use223 a local account to log in.</h2>
Nothing happens. I don't know if the Account pages are being loaded from another location other than the folders in my project.
I have tried scaffolding identity several times from several previous versions of the project, and end up with same issue.
I have mapped razor pages in Program.cs file _ I have correctly specify the layout page in ViewStart file inside Accounts folder. I just deleted the entire Identity folder inside areas. but the login page still loads
@{ Layout = "~/Views/Shared/_Layout.cshtml"; }
Razor pages do not use the same layout pages as mvc views. The identity pages and layouts are built into the identity package. You need to override the default razor pages.
See layout section of scaffolding
Finally resolved the issue. Turns out that the version of .Net 8 preview
I have installed requires at least visual studio 2022 17.6 preview 2. I was using vs 2022 17.5.5. After upgrading to 17.6 preview 6, the issue went away and scaffolding identity works perfectly now.