0

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。但是idXML 中的属性永远不会被调用,所以我不知道如何获取它。我希望id在传递数据时在类中引用。这可能吗,我该怎么做?

4

2 回答 2

1

使用 XPath @ 语法获取属性:

<%# XPath("one/@id") %>

您可以将此表达式绑定到 HiddenField 并在回发中访问它:

<asp:HiddenField runat="server" ID="hidID" Value='<%# XPath("one/@id") %>' />

将命令按钮添加到<ItemTemplate>

<asp:Button runat="server" ID="btnGetID" Text="Get ID" CommandName="GetID" />

在 OnItemCommand 事件中:

protected void SuperSimple_ItemDataBound(object sender, RepeaterCommandEventArgs e)
{
    //check the item type, headers won't contain the control
    if (e.CommandName == "GetID")
    {
        //find the control and put it's value into a variable
        HiddenField hidID = (HiddenField)e.Item.FindControl("hidID");
        string strID = hidID.Value;
    }
}

这是另一种选择(我最初发布是因为我对您的 OnItemCommand 事件的名称感到困惑,并认为您想要 DataBinding 时的值):

在你的<ItemTemplate>

<asp:Button runat="server" ID="btnGetID" OnClick="btnGetID_Click" Text="Get ID" />

代码隐藏:

protected void btnGetID_Click(object sender, e as EventArgs)
{
    //sender is the button
    Button btnGetID = (Button)sender;
    //the button's parent control is the RepeaterItem
    RepeaterItem theItem = (RepeaterItem)sender.Parent;
    //find the hidden field in the RepeaterItem
    HiddenField hidID = (HiddenField)theItem.FindControl("hidID");
    //assign to variable
    string strID = hidID.Value;
}
于 2012-11-14T23:07:02.703 回答
0

也许这有帮助,问题可能出在错误的 xml 结构中。

http://forums.asp.net/t/1813664.aspx/1?getting+xml+node+id+number

于 2012-11-14T23:01:27.067 回答