Response.Tryskipiiscustomerrors command in Asp.net core?

Asked

Viewed 56 times

1

Is there a way to return an error in Asp net core only for a certain action without using the custom errors page? I used to Response.TrySkipIisCustomErrors=true; but in ASP.Net Core no longer exists.

1 answer

1


There is. A simple way to display error message to the user is by using the collection Tempdata, which has the function of storing temporary data that can be used in subsequent requests. (Obs. you can download the project on Github by the link https://github.com/mpaulohs/AspNetCorePnotify )

Let’s see how it looks in practice:

1- Create an ASP.NET Core Web Application. Select File > New > Project. inserir a descrição da imagem aqui inserir a descrição da imagem aqui 2- Create a Client class inserir a descrição da imagem aqui

3- Create a Viewcomponent Pnotifymessages inserir a descrição da imagem aqui inserir a descrição da imagem aqui

4 - Add Viewcomponent to Layout.cshtml file. inserir a descrição da imagem aqui

inserir a descrição da imagem aqui

5- Create Action Create Client. inserir a descrição da imagem aqui

Browser other questions tagged

You are not signed in. Login or sign up in order to post.