当前位置:  开发笔记 > 编程语言 > 正文

自定义用户控件中的ASP嵌套标记

如何解决《自定义用户控件中的ASP嵌套标记》经验,为你挑选了2个好方法。

我刚刚开始使用C#中的自定义用户控件,我想知道是否有任何关于如何编写接受嵌套标签的示例?

例如,在创建时,可以为其asp:repeater添加嵌套标记itemtemplate.



1> Rob..:

我前段时间写了一篇关于此的博文.简而言之,如果您有一个带有以下标记的控件:


    
        
    

您需要控件中的代码遵循以下方式:

[ParseChildren(true)]
[PersistChildren(true)]
[ToolboxData("<{0}:CustomControlUno runat=server>")]
public class CustomControlUno : WebControl, INamingContainer
{
    private Control1ChildrenCollection _children;

    [PersistenceMode(PersistenceMode.InnerProperty)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    public Control1ChildrenCollection Children
    {
        get
        {
            if (_children == null)
            {
                _children = new Control1ChildrenCollection();
            }
            return _children;
        }
    }
}

public class Control1ChildrenCollection : List
{
}

public class Control1Child
{
    public int IntegerProperty { get; set; }
}


链接博客帖子作为答案的问题是网站何时死亡.我正在打字的情况是这样的.因此我看不出答案.

2> Guðmundur H..:

我跟随Rob的博客文章,做了一个略微不同的控制.控件是有条件的,就像if子句一样:


    
        You don't have a discount.
    
    
        Lucky you, you have a discount!
    

在代码中,然后将HasDiscount控件的属性设置为布尔值,该布尔值决定呈现哪个子句.

与Rob的解决方案的最大区别在于,控件中的子句实际上可以保存任意HTML/ASPX代码.

以下是控件的代码:

using System.ComponentModel;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebUtilities
{
    [ToolboxData("<{0}:PriceInfo runat=server>")]
    public class PriceInfo : WebControl, INamingContainer
    {
        private readonly Control ifDiscountControl = new Control();
        private readonly Control ifNotDiscountControl = new Control();

        public bool HasDiscount { get; set; }

        [PersistenceMode(PersistenceMode.InnerProperty)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
        public Control IfDiscount
        {
            get { return ifDiscountControl; }
        }

        [PersistenceMode(PersistenceMode.InnerProperty)]
        [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
        public Control IfNotDiscount
        {
            get { return ifNotDiscountControl; }
        }

        public override void RenderControl(HtmlTextWriter writer)
        {
            if (HasDiscount)
                ifDiscountControl.RenderControl(writer);
            else
                ifNotDiscountControl.RenderControl(writer);
        }
    }
}

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有