I'm at starter level for for ASP.NET Core. I have some html pages crafted by HTML5
and CSS3
. I want show this pages with ASP.NET
Core Razor Pages. So, I opened a new empty ASP.NET Core Project (Default is razor page I think.)
I copied the images and CSS file to wwwroot
folder. Lastly, I copied my html codes into a new Razor Page (Main.cshtml) which is in "/Pages" folder. The page can see the CSS, the CSS can see the images. However, Edge gives 404 error
while running the project. I think I cannot do the routing correctly:
Can you help me? Thanks.