2010-07-04 47 views

回答

1

在標記使用:

<%-- Your comment --%> 

或者寫:

<% if (this.DesignMode) {%> 
    Some informative text 
<% } %> 

我測試的最後一個出來的測試項目。當我拖動包含該代碼的用戶控件時,我會看到它(VS2010),當我運行它時,在生成的html中沒有任何跟蹤。

1

是,使用ControlDesigner Class

編輯:您還可以使用

protected override void Render(HtmlTextWriter writer) 
{ 
    if (this.DesignMode) 
    { 
    ... 
    return; 
    } 
    ... 
} 
相關問題