C#新手问,所以如果问题很愚蠢或者答案很明显,可能是因为我不完全理解它是如何XmlDataSource
工作的。
给定以下 XML 文件“super-simple-xml.xml”(格式化以节省一些空间),
<items>
<item> <one id="ms">Microsoft</one> <two>MSFT</two> </item>
<item> <one id="in">Intel</one> <two>INTC</two> </item>
<item> <one id="de">Dell</one> <two>DELL</two> </item>
</items>
一个看起来像这样的中继器,
<asp:Repeater id="SuperSimple" runat="server" OnItemCommand="SuperSimple_ItemDataBound">
<HeaderTemplate>
<table border="1"><tr><th>Company</th><th>Symbol</th><th>Wrong</th></tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td><asp:Label Text=<%#XPath("one") %> runat="server" /></td>
<td><asp:CheckBox Text=<%#XPath("two") %> runat="server" id="symbol" /></td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
<asp:Button id="buttonOne" Text="Submit!" runat="server" />
</FooterTemplate>
</asp:Repeater>
和以下绑定XML:
private void Page_Load(object sender, EventArgs e)
{
XmlDataSource xmlSource = new XmlDataSource();
xmlSource.DataFile = "super-simple-xml.xml";
xmlSource.XPath = "items/item";
if (!IsPostBack) // Did this to prevent an error
{
SuperSimple.DataSource = xmlSource;
SuperSimple.DataBind();
}
}
我将如何id
从每个 XML 条目中提取到一个类或变量中?
这里的想法是我在中继器中显示项目。我添加了复选框,所以我可以检查任何<two>
条目,然后按提交。当它回发时,我想将选中的条目存储在我制作的课程中。进入<one>
和<two>
进入很容易,因为它们在中继器中有我可以参考的 ID。但是id
XML 中的属性永远不会被调用,所以我不知道如何获取它。我希望id
在传递数据时在类中引用。这可能吗,我该怎么做?