2

What is the advantage of adding namespace in web.config file?

<configuration>
     <system.web>
              <pages>
                <namespaces>
                  <add namespace="System.Collections" />
                </namespaces>
              </pages>
          </system.web>
</configuration>
4

2 回答 2

6

这将允许添加您在视图中常用的项目的名称空间,因此您无需在需要使用它们时在每个页面/视图中添加引用。

于 2012-05-08T10:11:10.767 回答
0

您在此处定义的命名空间会自动导入到应用程序的所有页面中。

于 2012-05-08T10:13:19.737 回答