我想基于 XML 将用户控件添加到我的页面:
<?xml version="1.0" encoding="utf-8" ?>
<Fields>
<Group name="Main" text="Innhold">
<Field type="TextBox" name="Name" text="Navn"></Field>
</Group>
</Fields>
用户控件看起来像这样的 TextBox.ascx:
<div class="fieldWrapper">
<asp:Label runat="server"><%=Label %></asp:Label>
<asp:TextBox ID="TextBox1" runat="server" />
</div>
我根据 xml 中的 type 属性执行 LoadControl。喜欢:LoadControl(类型+“.ascx”):
var fields = from x in element.Elements("Field") select new
{
type = x.Attribute("type").Value,
name = x.Attribute("name").Value,
text = x.Attribute("text").Value,
};
foreach (var field in fields)
{
var control = LoadControl("~/UserControls/FieldControls/" + field.type + ".ascx");
pnl.Controls.Add(control);
}
FieldsHolder.Controls.Add(pnl);
我想将 xml 中的文本属性传递给 TextBox.ascx 中的标签。像这样: ctrl.Label = field.text 我知道如果我将控件转换为正确的类型,我可以这样做,但我不知道类型。我可以以某种方式使用反射吗?