简单的直接拼字符串
System.Xml操作看
Dim doc As New System.Xml.XmlDocument()
Dim root As System.Xml.XmlElement = doc.CreateElement("Authors_Table")
doc.AppendChild(root)
Dim node As System.Xml.XmlNode = doc.CreateElement("authors")
Dim n1 As System.Xml.XmlNode = doc.CreateElement("作者ID")
n1.InnerText = "172-32-1176"
node.AppendChild(n1)
n1 = doc.CreateElement("姓")
n1.InnerText = "王"
node.AppendChild(n1)
root.AppendChild(node)
Output.Show(doc.OuterXml)