https://github.com/temilaj/asp.net-core-custom-error-pages
using Custom error pages in ASP.NET Core
https://github.com/temilaj/asp.net-core-custom-error-pages
asp-net asp-net-core asp-net-core-mvc asp-net-mvc custom-error error-handling error-page
Last synced: 11 months ago
JSON representation
using Custom error pages in ASP.NET Core
- Host: GitHub
- URL: https://github.com/temilaj/asp.net-core-custom-error-pages
- Owner: temilaj
- License: mit
- Created: 2016-10-07T12:15:46.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-03-08T06:51:24.000Z (over 5 years ago)
- Last Synced: 2025-06-06T01:41:18.520Z (about 1 year ago)
- Topics: asp-net, asp-net-core, asp-net-core-mvc, asp-net-mvc, custom-error, error-handling, error-page
- Language: HTML
- Size: 616 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ASPNETCore-customErrorPages
Code sample detailing how to create and use custom error pages in ASP.NET Core 1.0.
Article detailing the steps to take can be found [here](https://gooroo.io/GoorooThink/Article/17086/Creating-Custom-Error-Pages-in-ASPNET-core-10)
## This application consists of:
* Sample pages using ASP.NET Core MVC
* [Gulp](https://go.microsoft.com/fwlink/?LinkId=518007) and [Bower](https://go.microsoft.com/fwlink/?LinkId=518004) for managing client-side libraries
* Theming using [Bootstrap](https://go.microsoft.com/fwlink/?LinkID=398939)
## Run & Deploy
restore the .NET core packages described in the `package.json`, install the npm and bower dependencies,and then update database with the migrations and run the project:
```bash
dotnet restore
npm install
bower install
dotnet ef database update
dotnet run
```
The `dotnet restore` command first restores the necessary packages required to run the application,
the `dotnet run` command simultaneously re-compiles and runs the `kestrel-server`.
I would love to hear your [feedback](https://temilajumoke.com)