Reputation: 11302
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
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