2012-03-28 55 views

回答

0

你可以採取看看uSiteBuilder http://usitebuilder.vegaitsourcing.rs/

讓我們用簡單的POCO類使用屬性創建和更新文檔類型。

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Web; 

using Vega.USiteBuilder; 

namespace MySite.DocumentTypes { 
    [DocumentType(AllowedTemplates = new string[] { "MyTemplateAlias" }, 
     IconUrl = "doc4.gif", Thumbnail = "docWithImage.png", 
     AllowedChildNodeTypes = new Type[] { typeof(MySite.DocumentTypes.ContentPage) }) 
    ] 
    public class HomePage : MySite.DocumentTypes.PageBase { 
    } 
} 
相關問題