Tagged Questions

2
votes
1answer
644 views

Xpath within ItemDataBound for Repeater

Okay so I'm pulling in an XML feed from feedburner, using an XMLDataSource and a repeater. <asp:Repeater ID="rptrEvents" OnItemDataBound="rptrEvents_ItemDataBound" DataSourceID="XmlDataSource1" ...
0
votes
1answer
207 views

How use nest Repeaters using a single XMLDataSource?

I'd like to use nested repeaters that share the same XML datasource where the parent repeater passes down the datasource to the child repeater so it doesn't need to re-access the datasource for every ...
0
votes
1answer
877 views

asp:HyperLink build NavigateUrl within Repeater using XPATH data

I am using a repeater for some products I am listing. I'm trying to build an asp:HyperLink NavigateUrl using both hardcoded text as well as XPATH data. ...