Ayyappan Anbalagan
Ayyappan Anbalagan

Reputation: 11302

How to avoid repeating namespace in aspx page

Is that possible to write namespace into some other file commonly.which should be automatically includes my page.

namespace like:using System;

Upvotes: 5

Views: 431

Answers (1)

Anero
Anero

Reputation: 1416

On web.config add the namespaces section as follows:

<system.web>
        <pages>
              <namespaces>
                    <add namespace ="...your namespace..." />
                    ...
              </namespaces>
              ...
        </pages>
        ...
</system.web>

Upvotes: 3

Related Questions