ASP.Net2.0中自定义控件在page中的注册
作者:佚名    ASP.NET网站开发编辑:admin   更新时间:2022-07-23
今天在网上看到asp.net 2.0中注册自定义控件的好方法,记录如下。
在web.config 文件中全局注册自定义控件
<system.web>
<pages>
<controls>
<add tagPRefix="rx" assembly="HYLQ.Component" namespace="HYLQ.Component"/>
</controls>
</pages>