| Thread | Last Post | Replies |
|
| Urgent!!! Please help | 22 Jul 2003 12:57 GMT | 4 |
I'm trying to write a log file (in XML) using XMLTextWriter. Each time my application runs, certain events are logged and the same log file should be updated. The very time, the log gets saved correctly, bu the next time I try to write to the same XML file using XMLTextReader, ...
|
| Control for nested XML Data | 22 Jul 2003 12:14 GMT | 2 |
I want to show the content of the xml with a control which allows to show the nodes in a nested way. I don't want to use DataGrid which shows the nodes in a tabular form. Is there any suitable control for me? Thanks. -- My C++ and C# ( Traditional Chinese ) Web Site : www.franzwong ...
|
| Do I use xslt or xsd schemas to transform input XML to output XML with the users changes? | 22 Jul 2003 12:02 GMT | 2 |
Hi, I've been buried in xsl and xslt articles for several days now, and am still unsure as to what I need to do... Basically, my vb.net app loads up an XML file from an external source (Input.xml). When the user is setting up the source, they can make changes
|
| xpath - how to get an element name? | 22 Jul 2003 05:51 GMT | 1 |
I'm using the following xpath in .net //Station[@name="Station1"]/WI/Boards/Board[@sn="12345"][not(@finish)]") to test if there is a Board element with NO "finish" attribute. If there is, I need to get the @title of the WI element...but haven't
|
| best way to deserialize xml | 20 Jul 2003 06:26 GMT | 2 |
I'm at a quandry as to what's the best/fastest way to deserialize an incoming xml stream? I ran a small test on xmlserializer and on a small file it performed 10 times worse then when I used the XMLDocument and deserialized the values
|
| Url validation | 20 Jul 2003 06:08 GMT | 1 |
A custom xml file I wrote for my application has two elements that accepts urls. I used vs.net to generate a schema file for my file but there is no validation for urls. How can I validate an element to accept valid urls including https ones?
|
| SelectSingleNode with a default namespace | 19 Jul 2003 10:40 GMT | 2 |
My XML document has a default namespace specified by xmlns="some_url". Here it is: <?xml version="1.0" encoding="utf-8" ?> <ssmproject
|
| adding records to multiple tables in MSDE 2000 from XML using ADO.NET | 18 Jul 2003 15:59 GMT | 1 |
I am using .NET web aplication and MSDE 2000. I receive new record in XML format which I want to add into MSDE 2000. I am doing it as below. Private Sub InsertNew(ByVal sData1 As String) Dim SR1 As System.IO.StringReader = New
|
| Serialization of a derived class to the same element as the base class | 18 Jul 2003 08:00 GMT | 4 |
I have the following two classes' the second derived from the first. Each time 'myclass' is added it adds an element. The second class is the same in, except it includes more methods. What I want to be able to do is add the class element even if I use my
|
| XmlReader Question | 18 Jul 2003 03:44 GMT | 1 |
I am using an XmlTextReader to read an xml file. It may happen that the file is present in the disk, but it may be empty (0 bytes). I would like to find out whether the xml file contains a valid root node or not. How do I do this?
|
| HTML to XML conversion | 17 Jul 2003 23:22 GMT | 1 |
I'd like some advice on the best way to convert html to xml. Is anyone aware of third parties component that would do the job? Thanks, Yann
|
| Possible to edit and save back certain nodes ONLY of an xmlDocument? | 17 Jul 2003 17:11 GMT | 2 |
One more question...please. I have an xml doc like this: <assembly> <station name="station1">
|
| load xml in value | 16 Jul 2003 21:05 GMT | 1 |
I'm a newbie and have a question: I have following PivotTable object in a HTML page <html> <body>
|
| Writing to an xml file | 16 Jul 2003 17:23 GMT | 2 |
A code snippet from an xml file that I want to edit: <?xml version="1.0" encoding="utf-8" ?> <ROOT> <WEB>
|
| Cannot implicitly convert type 'System.Xml.XmlNode' to 'System.Xml.XmlAttribute' | 16 Jul 2003 17:22 GMT | 3 |
I have the foll. code to update the value of an attribute: xmlDocument.Load("abc.xml"); XmlAttribute xmlAttrib = xmlDocument.SelectSingleNode(root/web/theme/@desc); xmlAttrib.Value = ddDes.SelectedItem.ToString();
|