Registration of custom controls in page in ASP.Net2.0
Author:Eve Cole
Update Time:2009-06-30 16:47:58
Today I saw a good way to register custom controls in ASP.Net 2.0 on the Internet. The record is as follows.
Register custom controls globally in the web.config file
<system.web>
<pages>
<controls>
<add tagPrefix="rx" assembly="HYLQ.Component" namespace="HYLQ.Component"/>
</controls>
</pages>