Tagged Questions
4
votes
2answers
3k views
ASP.NET — How to populate a TreeView control with XML data response from a ASHX handler
I have an ASHX handler that returns an XML response (FileStructureXML.ashx).
Now I need to get the XML response from the ASHX handler and use it as a data source for my ASPX page.
If I point the ...
2
votes
1answer
641 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" ...
1
vote
1answer
50 views
Creating Maintainable Xml structure for a relational database
I am not trying to save dataset or datatable to a xml file rather create a xml structure for saving related data? For example i would like to know how below data could be in a xml file
User
UserId
...
1
vote
1answer
32 views
Data storage hazards and problems when using XmlDataSource as persistancy layer in an ASP.NET web application
This is a question about how to solve a possible, real, problem occurring when deciding to use xml files to store data in a web application.
The scenario
Consider you want to build a web application ...
1
vote
3answers
224 views
How do I pass a xml attribute to xslt parameter?
I got everything working (thank empo) except the ctrlname column. I don't know the syntax well enough. What I am trying to do is use the xslt to sort the xml in the gridview by the column name. ...
1
vote
4answers
4k views
Load XML Data (Key/Value Pairs) into Data Structure
I have an XML Data Source which contains a list of key/value pairs. I'm looking for a simple way to load the same data into an array or some other data structure so that I can easily look up the data. ...
0
votes
1answer
315 views
How do I pass a XSLT parameter to a XmlDataSource correctly?
I believe I have all the code correct but I can't get it to work. The GridView has allowSorting = true. So in theory, when I click on the column header the xml in the gridview should sort by that ...
0
votes
1answer
202 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
184 views
XML parsing problem Object reference not set to an instance of an object
I am parsing XML in a dataset it works fine except with some RSSs it gives an error "Object reference not set to an instance of an object." i tried the XmlDataSource and it gives the same error
Note ...
0
votes
1answer
160 views
ASP.NET/XML: Convert XmlDataSource to HTML?
How can I parse an remote xml file with XMLDataSource to HTML? Xpath? Can someone show me a quick demo please? Thanks!
0
votes
1answer
129 views
How do I serialize modified in-memory xml from an XmlDataSource without calling XmlDataSource.Save()?
// XmlDataSource Setup
XmlDataSource xds = new XmlDataSource();
xds.Data = @"
<attributes>
<attribute>ATTR1</attribute>
<attribute>ATTR2</attribute>
...
0
votes
1answer
448 views
Transform Xml using Xslt
I have the following XML:
<?xml version="1.0" encoding="utf-8" ?>
<ApplicationSettingCategories>
<Category>Cat1</Category>
<Category>Cat2</Category>
...
0
votes
3answers
245 views
How relevent is xls file for .NET developer?
Once in a while, we use .XLS file to convert the data stored in the XML file and populate some dropdownlist and other server controls using XmlDataSource object. I am just wondering how popular is the ...