| Thread | Last Post | Replies |
|
| single quote in xpath | 08 Apr 2005 15:48 GMT | 1 |
I've an xml like this.. <REPORT> <ITEM name="Children's hospital"/> <ITEM name="AJ Hospital"/>
|
| Reading Xml in DataSet | 08 Apr 2005 13:43 GMT | 2 |
Hi Guys ! I want your views on this An xml file can be loaded into a dataset in the following ways: XmlTextReader reader = new XmlTextReader("inrss.xml"); DataSet ds = new DataSet();
|
| Getting attributes(I think) from XMLReader | 08 Apr 2005 13:41 GMT | 6 |
I need a few suggestions. I have the following XML segment: <LookUp> <ControlType>CheckBoxGroup</ControlType> <DBField>LastMedDate</DBField>
|
| How to loop thru XML Schema and retrieve s the element name | 07 Apr 2005 20:36 GMT | 2 |
I need a sample to retieve all the element names from a XML schema using C#, I also total no of elements in the schema.
|
| Problem with XML/XSLT and C# | 07 Apr 2005 09:23 GMT | 1 |
I have a web application that reads the contents of a web form and creates an XML file from it. Next it creates an HTML file using an XSLT file. However, I sometimes get weird characters in my final HTML. Is there a way to fix this? Maybe an additional directive I can add here.
|
| New parent node | 06 Apr 2005 16:01 GMT | 2 |
How do I add a new parent node to the existing nodes? I have an existing XmlDocument object like this: <item> <something>ABC</something>
|
| copy xml file content | 06 Apr 2005 15:33 GMT | 2 |
How can I copy content of one xml file to a new one? Thanks!
|
| How to generate a schema from XSL? (Difficult) | 06 Apr 2005 11:05 GMT | 1 |
I am in a situation where I don't have access to an xml, say "original.xml". But I do have the schema for it and an XSLT transformation on it that would create a new xml from "original.xml" called "transform.xml".
|
| Create XML file | 06 Apr 2005 11:00 GMT | 1 |
Hello friends I want to crete an xml file based on a sql server query, and using a specific format that include current hour, current date, the user that create the xml file.
|
| Xpath request Pb | 06 Apr 2005 09:10 GMT | 2 |
I get a XML content from a web services: ************************************************ <List DocTemplateUrl="DIEITIC/Forms/template.doc" DefaultViewUrl="/dgafeie/DIEITIC/Forms/AllItems.aspx"
|
| xpath problems | 05 Apr 2005 14:55 GMT | 7 |
I am trying to get all the elements that are inside the <group> tag in this function and it doesn't work. What is wrong with that? private void populateTreeControl(
|
| present attributes instead of a name | 05 Apr 2005 02:15 GMT | 1 |
Here is the code of the function I want to use: private TreeNode CreateTreeNodeFromXmlNode(XmlNode node) { TreeNode tmptreenode = new TreeNode();
|
| Serializing private members | 04 Apr 2005 16:53 GMT | 1 |
I have a class that contains user configuration settings and I would like to save it on disk when program exits and restore data when program starts. XmlSerializer seems like a natural choice. And it works fine. There is only
|
| CSV to XML, now to validate | 04 Apr 2005 16:29 GMT | 4 |
hiya, I have a 3rd party function that converts a CSV to an XML doc. I now need to validate the xmlDoc.I understand that I need a valid XSD for the newly created xmlDoc, but the xmlDoc contains no schema definitions
|
| xml node | 04 Apr 2005 10:58 GMT | 5 |
How can I get a xml node from a XmlTextReader? Thanks a lot!
|