在学习 BlogEngine 中使用到的技巧

  1. Asp.Net 2.0 技巧收集
  2. 使用了 c#2.0 的泛式编程
    在 msdn cast 中的 c# 新锐技术中发现了关于泛式编程的视频教程,学习了,收益不少,是通过 IReader 学习的。
  3. 使用了在 Web.config 中注册用户控件和自定义控件:
    相关文章连接:
    pages 的 controls 元素(ASP.NET 设置架构)
    技巧和诀窍:如何在 Web.config 中注册用户控件和自定义控件
    引用:
    web.config 中:
     <?xml version="1.0"?>
    <configuration>
      
    <system.web>          <pages>
          
    <controls>
            
    <add tagPrefix="scottgu" src="~/Controls/Header.ascx" tagName="header"/>
            <
    add tagPrefix="scottgu" src="~/Controls/Footer.ascx" tagName="footer"/>
            <
    add tagPrefix="ControlVendor" assembly="ControlVendorAssembly"/>
          </
    controls>
        
    </pages>
      
    </system.web>
    </configuration> 
    页面中: 
    <html>
    <body>
        
    <form id="form1" runat="server">         
       
    <scottgu:header ID="MyHeader" runat="server" />
        </
    form>
    </body>
    </html>