Member 13888852 Ответов: 2

Какова цель filterconfig.cs , webapiconfig.cs, bundleconfig.cs, routeconfig.cs, global.asax и webconfig в ASP.NET MVC


нужно знать основное назначение и для чего оно используется в mvc

Что я уже пробовал:

я пробовал искать книги и блоги mvc, но там это не упоминается должным образом

2 Ответов

Рейтинг:
1

Ravi_Chauhan

BundleConfig.cs
It is a technique used to improve the performance of your web page 
By group the style files and javascript files in the separate bundle and include that bundle in the controller file.

FilterConfig.cs
In this file we keep all the filter related to configuration which include security policies and output parameter.

RouterConfig.cs
This file is used to maps the url request to a specific controller action by using the Router Table.