我创建了一个自定义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
也不会出现?答案 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;
}
}