Tagged Questions

1
vote
1answer
49 views

How to specify bindings for Asp.net Menu with xml Data source

I got a xml file with the below structured content for the menu which i load using XmlDataSource and i am finding it hard and confusing as to how to specify bindings for the asp.net menu when this ...
1
vote
1answer
66 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
1answer
57 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
344 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
262 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
785 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. ...
0
votes
1answer
93 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
2answers
221 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
252 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
1answer
572 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
2answers
245 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
381 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
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 ...