Registering Server Controls in Web.Config
A useful addition to ASP .NET 2.0 is the ability to register web controls in web.config. In ASP .NET 1.1, if you wanted to use a custom server control on twenty different pages, you had to register it on all twenty of those pages:
<%@ Register tagprefix="tagprefix" Namespace="Namespace" Assembly="Assembly" %>
In ASP .NET 2.0, you can register the server control in the controls section of web.config once and use it in whatever page you want of the web application.
<pages><controls><addtagPrefix="MyTagPrefix"namespace="My.Namespace"assembly="MyAssembly"/></controls><!-- Other elements go here --></pages>