如何在css文件中设置asp.net中的模板?

时间:2011-01-10 10:28:57

标签: c# .net asp.net

是否可以在cs文件中设置控件的ITemplate属性?

在aspx文件中我可以通过例如:

来完成
<MyControl>
    <MyTemplate>
        <div>
        sample text, other controls
        </div>
    </MyTemplate>
</MyControl>

这个div在实际情况中看起来像这样:

<div id="StatusBarDiv" runat="server" align="right">
    <table>
        <tr>
            <td>
                <dxe:ASPxLabel ID="Title" runat="server" Text="Records per page:">
                </dxe:ASPxLabel>
            </td>                    
            <td>
                <dxe:ASPxComboBox ID="cbxRecordsPerPage" ClientInstanceName="cbxRecordsPerPage" Width="50px" runat="server" SelectedIndex="<%#GetSelectedIndex()%>">
                    <Paddings PaddingBottom="0" PaddingTop="0" />
                    <Items>
                        <dxe:ListEditItem Text="10" Value="10" />
                        <dxe:ListEditItem Text="20" Value="20" />
                        <dxe:ListEditItem Text="30" Value="30" />
                        <dxe:ListEditItem Text="40" Value="40" />
                        <dxe:ListEditItem Text="50" Value="50" />
                    </Items>
                </dxe:ASPxComboBox>
            </td>
        </tr>
    </table>
</div>

1 个答案:

答案 0 :(得分:2)

确实有可能。您可以将代码实现ITemplate的类的实例分配给代码隐藏文件中的模板属性:

public class YourTemplate: ITemplate
{
    public void InstantiateIn(Control container)
    {
        HtmlGenericControl div = new HtmlGenericControl("div");
        div.InnerText = "sample text, other controls";
        container.Controls.Add(div);
    }
}

然后,在MyControl课程中:

protected override void OnLoad(EventArgs e)
{
    MyTemplate = new YourTemplate();
}

编辑:由于模板的内容非常复杂,手动创建控制树并不是很方便,就像我在上面的示例中所做的那样。

最好在user control中托管控制树,并使用LoadControl()方法在模板中加载该控件:

public class YourTemplate: ITemplate
{
    public void InstantiateIn(Control container)
    {
        Control userControl = container.Page.LoadControl("YourUserControl.ascx");
        container.Controls.Add(userControl);
    }
}