Is that possible to write namespace into some other file commonly.which should be automatically includes my pa开发者_如何学Goge.
namespace like:using System;
On web.config add the namespaces section as follows:
<system.web>
<pages>
<namespaces>
<add namespace ="...your namespace..." />
...
</namespaces>
...
</pages>
...
</system.web>
精彩评论