之前都是在每个页面的顶端注册用户控件或者是自定义控件,这样不简洁,而且麻烦。
现在只要在在web.config文件中声明,其他地方就可以直接使用前缀加控件如下黄色代码所示:
1 <configuration> 2 <system.web> 3 <compilation debug="true" targetFramework="4.0"/> 4 <httpRuntime/> 5 <pages> 6 <controls> 7 <add tagPrefix="DIYC" assembly="HuaweiSoftware.Chenlh.DIYControls" namespace="HuaweiSoftware.Chenlh.DIYControls"></add> 8 </controls> 9 </pages> 10 </system.web> 11 </configuration>