之前都是在每个页面的顶端注册用户控件或者是自定义控件,这样不简洁,而且麻烦。

现在只要在在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>

 

posted on 2014-03-25 09:40  随心所意  阅读(268)  评论(0编辑  收藏  举报