Make 500 Error page

This commit is contained in:
Дмитрий Шиманский
2023-10-22 17:02:30 +03:00
parent 76208767b2
commit 35368f4d7c
8 changed files with 758 additions and 21 deletions

12
Pages/NotFound.cshtml.cs Normal file
View File

@@ -0,0 +1,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace yaflay.ru.Pages
{
public class Index1Model : PageModel
{
public void OnGet()
{
}
}
}