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
637 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
41 views

XMLDataSource with filter binding to a DropDownList

I have an XML <AddressTypes> <AddressType name="OFFICE" value="OFFICE" status="true"/> <AddressType name="HOME" value="HOME" status="true"/> <AddressType name="PRIVATE" ...
1
vote
0answers
57 views

Gridview XmlDataSource from Google Spreadsheet

I want to display data from google spreadsheet in a gridview. The spreadsheet is available publicly and therefore has a xml feed url : ...
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
2answers
217 views

Asp.Net GridView order data bound columns before declaritive ones

I have a gridview that is databound to a XmlDataSource. I also want to add a section with a buttonfield at the end of the gridview. When I add a columns section it prepends it (before xml columns). ...
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
1answer
332 views

XmlDataSource with XPath - can I get the raw data in code?

If an ASP.NET form has an XmlDataSource on it, and in code I am setting the XPath filter, e.g: xmlExample.XPath = String.Format("data/reasons/reason[@text='{0}']/details/",someValue); ... can ...
1
vote
1answer
240 views

Why oh why doesn't my asp.net treeview update?

I'm using an ASP.net treeview on a page with a custom XmlDataSource. When the user clicks on a node of the tree, a detailsview pops up and edits a bunch of things about the underlying object. All ...
1
vote
0answers
766 views

ASP.NET 2.0 XmlDataSource's XPath doesn't support namespaces

I'm trying to display (using a asp:Repeater and a asp:XmlDataSource) the content of a sitemap.xml file (see standard defined into http://www.sitemaps.org/protocol.php). The problem is that the binder ...
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. ...
1
vote
1answer
499 views

Bind XMLDataSource to HTTP handler

I have some dynamically generated XML data that will be consumed by a few consumers (An ASPX page, a flash file and maybe another one as well). I have implemented it as a custom handler. I construct ...
0
votes
0answers
39 views

Populate Menu with XML Data response from Ashx Handler

AM trying to load Menu from Xml response returned by ashx handler. Data is loaded when I use the total path like XmlDataSource1.DataFile = "http://localhost:15887/MenuXmlHandler.ashx"; But ...
0
votes
1answer
58 views

ComponentOne : C1NavigationList databinding with XMLDataSource

In the process of Iphone View ability for a shopping cart system, where i am trying to implement using the ComponentOne tools for Iphone in the products listing.For which i have identified ...
0
votes
1answer
145 views

Counting ItemTemplate in ListView from XmlDataSource in ASP.net

I have the following code. It works as is, but... I am not always going to have an even number of items in the RSS feed So, at the end of the table, I might have only one table cell on the last row. ...
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
2answers
204 views

How to achieve reversed document ordered XmlDataSource in ListView?

I'm using an asp:XmlDataSource to list an xml document. It looks like this: <asp:XmlDataSource ID="XmlDataSource1" runat="server" DataFile="~/App_Data/Xml/History.xml" /> And I'm using it in a ...
0
votes
1answer
238 views

How to delete in asp:ListView that uses asp:XmlDataSource?

I've created an asp:ListView and attached it to an asp:XmlDataSource. I would like to support the delete command for my list, so I've added the following button: <asp:Button runat="server" ...
0
votes
2answers
652 views

How to programatically set SelectedValue of Dropdownlist when it is bound to XmlDataSource

I'm using XmlDataSource as the datasource for a dropdownlist. Now I want to set the SelectedValue of the dropdown when the page initially loads. I tried the OnDataBound event of the dropdown in which ...
0
votes
1answer
549 views

any alternative to xmldatasource in asp.net menu control

my code is as follows DataSet ds = new DataSet(); string connStr = "Data Source=PARITAS00024;Initial Catalog=MenuDb;Persist Security Info=True;User ID=sa;Password=paritas123"; using ...
0
votes
0answers
27 views

How Do I create a URL based on an XML DataSource field?

I am trying to use an XML DataSource field as part of the NavigateUrl property of the HyperLink control in ASP.Net 2.0 What I have is <asp:HyperLink ID="NewsArticleLink" runat="server" ...
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
2answers
237 views

Updating a XmlDataSource at runtime

I have this DropDownList bound to a XmlDataSource, but the XPath must depend on another input (another DropDownList). I modify the XPath and rebind inside the parent DDL's SelectedIndexChanged, but ...
0
votes
2answers
349 views

ASP.Net menu databinding encoding problem

I have a menu where I bind data through: XmlDataSource xmlData = new XmlDataSource(); xmlData.DataFile = String.Format(@"{0}{1}\Navigation.xml", getXmlPath(), getLanguage()); ...
0
votes
1answer
872 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. ...
0
votes
1answer
923 views

Seeking Advice: Updating a FormView Based on DropdownList Value

Greetings! I'm looking for some advice regarding an approach to displaying data in a FormView based on a selection of a DropDownList within that FormView control. For example, I have a UserControl ...
0
votes
2answers
537 views

Master/Details view with XmlDataSources

I have a basic test web form with a DataList and a DetailsView and two XmlDataSource components for each of them. The binding of the DataList to the underlying XML document was easy to set up, but ...