Tagged Questions
The xmldatasource tag has no wiki summary.
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
3answers
833 views
Loop through XML elements in XmlDataSource in code behind
I have an XmlDataSource and a GridView on my page. On the Page_Load event, I apply an XPath to filter the xml elements according to the input of the user, LexiqueXmlDataSource.XPath = ...
2
votes
1answer
642 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
1answer
62 views
C# -A field or property with the name 'SUMMARY' was not found on the selected data source
I am facing issue in binding the gridview when one of the tag in the XML nodelist is missing. I am getting below error message:
A field or property with the name 'SUMMARY' was not found on the ...
0
votes
0answers
15 views
SSRS - Large report taking long time to peocess, using xml datasource
I have a report that uses XML from webservice as a datasource. The XML is very large, and it takes a lot of time for the report to render (after receiving the xml from the server).
I think that ...
0
votes
1answer
39 views
Binding to XMLDataProvider
Made a simple test project where i try to bind to a xmldatasource in a proto viewmodel
public partial class Window1 : Window
{
//private XmlDataProvider _provider = new XmlDataProvider();
...
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
0answers
62 views
How to use “deep” XML with MSTest XML Datasource
I'm having some problems with MSTest using an XML Datasource. Assume that I've got an XML file that looks like this:
<Users>
<User>
<Id>1</Id>
...
0
votes
1answer
59 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
0answers
13 views
xmldatasource in junit test
How can we use xmldatasource in junit test? I am using spring and hibernate in my application
I have created xmldatasource using Eclipse Database View.
Thanks,
Bhupendra Kalakoti
0
votes
1answer
76 views
How to save parsed data in android?
I am creating an android application in which I am parsing so much XML data (XML data comes from a server) which contains Strings and image url's also.I need to use this data in many part of ...
0
votes
1answer
146 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
61 views
How to reset an XMLGregorianCalendar to new values
I'm going to be doing some work with dates millions of times per day. I've created an XMLGregorianCalendar to handle the dates from an XML feed as such:
XMLGregorianCalendar xCalEst = null;
xCalEst ...
0
votes
1answer
140 views
ASP.NET Dropdown Menu not refreshing data
I am constructing an ASP.NET Menu using an asp:XmlDataSource and setting the Data property and binding the Menu. Everything works well until I have to change the menu. For instance when I remove a ...
0
votes
0answers
302 views
Binding sitemap data programmatically via XMLDataSource
I'm trying to populate a RadPanelBar programmatically from an XmlDataSource defined in my C# code (i.e. not from an actual XML file), that copies nodes over from a SiteMapDataSource. I'm doing this ...
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
205 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
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
239 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
654 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
550 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
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
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
3answers
356 views
Handling XmlDataSource when remote XML source not available
When using an XmlDataSource is there good way to handle exceptions that are caused when the remote XML file is unavailable? I'm somewhat new to .NET and using C#.
0
votes
2answers
350 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
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
874 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
2answers
768 views
show page in iframe with different url in browser
Hello
I apologize because my English is not good.
I Have a webpage by asp.net that contain one treeview ,xmldatasource,one xml file that related to xmldatasource and one iframe.
When user click on ...
0
votes
1answer
450 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
1answer
924 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
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 ...
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 ...
0
votes
3answers
2k views
Display data from XMLDataSource in TextBox
Can anyone give me some pointers on how to display the results of an XPath query in a textbox using code (C#)? My datascource seems to (re)bind correctly once the XPath query has been applied, but I ...