Preferred Language:

Listing 1.3 - Web.Config

Illustrates how to import a namespace for an entire application within the web.config file.

Listing 1.3 - Web.config
Copy

<?xml version="1.0"?>
<configuration>
    <system.web>
        <pages>
            <namespaces>
                <add namespace="System.Net.Mail"/>
            </namespaces>
        </pages>
    </system.web>
</configuration>