6
Answers

Can i Continue in .net asp or not

sudheer raju

sudheer raju

9y
690
1
I am fresher Curently working on asp and mvc in small company its better to continue in this or to change any advanced technologies for growth in future pls suggest me, i am confusion
Answers (6)
1
Harshit

Harshit

46 4k 3k May 15
yes it is working
0
Bruce Wayne

Bruce Wayne

5 26.4k 6.7k Oct 21

In ASP.NET Core, **filters** are components that enable code to be run before or after certain stages in the request processing pipeline. They are used to implement cross-cutting concerns like logging, authorization, caching, and exception handling. There are several types of filters:

1. **Authorization Filters**: Handle authentication and authorization.
2. **Resource Filters**: Run before and after the rest of the pipeline (e.g., to manage caching).
3. **Action Filters**: Run before and after the execution of a controller action.
4. **Exception Filters**: Handle exceptions thrown during the processing of requests.
5. **Result Filters**: Run before and after the execution of the action result.

Filters can be applied globally, at the controller level, or on individual actions.