2012-03-28 2 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 { 
    } 
} 
관련 문제