我正在创建一个动态表单,用户选择一个区域然后选择一个主题,然后根据主题加载一组控件。表单的选项都在XML文件中定义。
我的问题是,当我遍历XML时,我将深入到我在文本文件中有2个已定义的控件,我创建了每个控件两次。我认为最好先显示一些代码,然后解释一下,这是我的代码。
<?xml version="1.0" encoding="utf-8" ?>
<options>
<option name="xerox">
<sub_option name="Paper Jam">
<input type="dropdown" name="location" />
<input type="textbox" name="printername" />
</sub_option>
<sub_option name="New Printer Request" />
<sub_option name="Supply Request" />
<sub_option name="Hardware Failure" />
</option>
</options>
下面的C#代码
protected void loadControls(string parent, string parentNode)
{
XmlDocument itemList = new XmlDocument();
itemList.Load(@"c:\inetpub\wwwroot\sp\css\itemList.xml");
Panel controls = new Panel();
XmlNodeList nodeList = itemList.SelectNodes("options/child::node()");
test.Text = parent;
foreach (XmlNode node in nodeList)
{
if (node.Attributes["name"].Value == parentNode && node.HasChildNodes)
{
test.Text = "for 2 coming";
foreach (XmlNode subnode in node.ChildNodes)
{
if (subnode.Attributes["name"].Value == parent && subnode.HasChildNodes)
{
foreach (XmlNode optionNode in subnode.ChildNodes)
{
string controlType = optionNode.Attributes["type"].Value;
string controlName = optionNode.Attributes["name"].Value;
switch(controlType)
{
case "dropdown":
DropDownList ddl = new DropDownList();
qna.Controls.Add(ddl);
break;
case "textbox":
TextBox tb = new TextBox();
qna.Controls.Add(tb);
break;
}
}
}
}
}
}
下面的输出(这是在选择Paper Jam之后)
答案 0 :(得分:1)
我想这个问题出现在你的代码行中:
test.Text = "for 2 coming";
foreach (XmlNode subnode in node.ChildNodes)
{
您应该检查以下内容而不是此处的foreach循环
if(node.ChildNodes.Count>0)
{
...
}