C#C
C#6mo ago
Pyro Cyclone

✅ ASP.NET page help

I have a page under Pages/Servers/Details.cshtml, and this is the code:
@page "{id}"
@model Namespace.Pages.Servers.DetailsModel
@{
    ViewData["Title"] = Model.Server.Name;
}
However, when I try to go to /servers/{id}, it can't find the page. What am I doing wrong? (.net8.0)
Was this page helpful?