DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
ASP.NET Web.config TIP
Register controls for pages in Web.config:
<system.web>
<pages>
<controls>
<add tagPrefix="mycontrol" src="~/Controls/Header.ascx" tagName="header"/>
<add tagPrefix="mycontrol" src="~/Controls/Footer.ascx" tagName="footer"/>
</controls>
</pages>
</system.web>





