C# newbie asking, so if the question is stupid or the answer is really obvious, it's probably because I don't fully understand how XmlDataSource works.
Given the following XML file "super-simple-xml.xml" (formatted to save some space),
<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>
a repeater that looks something like this,
<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>
and the following to bind the 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();
}
}
How would I go about pulling the id from each XML entry into a class or variable?
The idea here is that I am displaying the items in a Repeater. I added checkboxes, so I can check any of the <two> entries, and then press Submit. When it posts back, I want to store the checked entry in a class I've made. Getting <one> and <two> in are easy enough because they have IDs in the Repeater that I can reference. But the id attribute in the XML is never called, so I don't know how to get to it. I want to have the id in the class to reference as I pass the data along. Is this possible, and how do I do it?