Advertisement
mobilefish

Untitled

Jun 6th, 2021
1,074
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.33 KB | None | 0 0
  1. using System.Web;
  2. using System.Web.Mvc;
  3.  
  4. namespace WebApplication10 //Namespace will vary based on project name
  5. {
  6.     public class FilterConfig
  7.     {
  8.         public static void RegisterGlobalFilters(GlobalFilterCollection filters)
  9.         {
  10.             filters.Add(new ErrorHandler.AiHandleErrorAttribute());
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement