Changeset 444
- Timestamp:
- Feb 28, 2008, 11:36:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/TestCase/SimpleTestCase/XmlTest.ab
r424 r444 7 7 doc.AppendChild( doc.CreateElement( "root" ) ) 8 8 doc.ChildNodes[1].AppendChild( doc.CreateElement( "test" ) ) 9 10 Dim attr1 = doc.CreateAttribute( "attr1" ) 11 attr1.Value = "123" 12 doc.ChildNodes[1].Attributes.Add( attr1 ) 13 Dim attr2 = doc.CreateAttribute( "attr2" ) 14 attr2.Value = "456" 15 doc.ChildNodes[1].Attributes.Add( attr2 ) 16 9 17 System.Diagnostics.Debug.WriteLine( doc.OuterXml() ) 10 18 End Sub
Note:
See TracChangeset
for help on using the changeset viewer.