防止ASP.NET属性在自定义控件中显示为属性

时间:2011-08-31 21:20:18

标签: c# .net asp.net html

我创建了一个自定义ASP.NET控件,它将充当具有特定包装标记的容器:

class Section : System.Web.UI.HtmlControls.HtmlGenericControl
{
    public string WrapperTag // Simple interface to base-class TagName
    {
        get { return base.TagName; }
        set { base.TagName = value; }
    }


    public string BodyStyle
    {
        get
        {
            object o = ViewState["BodyStyle"];
            return (o == null) ? "" : (string)o;
        }
        set
        {
            ViewState["BodyStyle"] = value;
        }
    }

    protected override void Render(System.Web.UI.HtmlTextWriter writer)
    {
        Attributes["style"] = BodyStyle + ";";
        base.Render(writer);
    }
}

除了BodyStyle属性由于某种原因在HTML输出中也作为属性出现之外,这没有问题。所以,如果我使用控件:

<xx:Section runat="server" WrapperTag="div" BodyStyle="background-color:#ffeeaa;"><other stuff /></xx:Section>

输出:

<div BodyStyle="background-color:#ffeeaa;" style="background-color:#ffeeaa;"><other stuff HTML output /></div>

我正在尝试生成输出:

<div style="background-color:#ffeeaa;"><other stuff HTML output /></div>

我的问题:

  • 为什么BodyStyle显示为HTML属性?
  • BodyStyle出现以来,为什么WrapperTag也不会出现?

1 个答案:

答案 0 :(得分:1)

BodyStyle已写出,因为它存在于ViewState中。在OnRender期间HtmlGenericControl将所有ViewState项添加为属性。 WrapperTag不在ViewState中,因此不会将其写为属性。 _bag是StateBag。

这是反射器的渲染属性实现:

public void Render(HtmlTextWriter writer)
{
    if (this._bag.Count > 0)
    {
        IDictionaryEnumerator enumerator = this._bag.GetEnumerator();
        while (enumerator.MoveNext())
        {
            StateItem stateItem = enumerator.Value as StateItem;
            if (stateItem != null)
            {
                string text = stateItem.Value as string;
                string text2 = enumerator.Key as string;
                if (text2 != null && text != null)
                {
                    writer.WriteAttribute(text2, text, true);
                }
            }
        }
    }
}

将您的代码更改为:

private string bodyStyle;

public string BodyStyle
{
    get
    {
        return bodyStyle ?? string.Empty;
    }
    set
    {
        bodyStyle = value;
    }
}