如何生成XML 用XmlWriter - .NET技术 / VB.NET
    
	
	如何生成如下xml
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>  
- <epp xmlns="urn:iana:xml:ns:epp-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:iana:xml:ns:epp-1.0 epp-1.0.xsd">
- <command>
- <create>
- <domain:create xmlns:domain="urn:iana:xml:ns:domain-1.0" xsi:schemaLocation="urn:iana:xml:ns:domain-1.0 domain-1.0.xsd">
   <domain:name>test-test.cn</domain:name>  
   <domain:period unit="y">1</domain:period>  
   <domain:registrant>1229682222788-en</domain:registrant>  
   <domain:contact type="tech">1229682222788-en</domain:contact>  
   <domain:contact type="admin">1229682222788-en</domain:contact>  
   <domain:contact type="billing">1229682222788-en</domain:contact>  
   <domain:authInfo type="pw">1229682222788-en</domain:authInfo>  
   </domain:create>
   </create>
- <unspec>
- <cnDomain:create xmlns:cnDomain="urn:iana:xml:ns:cntld:domain-1.0" xsi:schemaLocation="urn:iana:xml:ns:cntld:domain-1.0 cntld-domain-1.0.xsd">
   <cnDomain:type>E</cnDo
    
 
	相关问答:
        
    
    txt 和XML 格式相应 
 不借助DataSet 
 导入读取TXT文件 
 然后直接写入XML(同一文件,不同数据,递增原数据没有被覆盖情况下增加数据.) 
 教个要点或最好是有个代码提示的 
 过路好汉 帮个忙撒^^ 
不会,帮楼主 ......
    
        
    
    我想把word另存为xml之后,用vb读取这个xml的内容,请问如何实现?
dim f as integer
dim b() as byte
dim s as string
dim L as long
f=freefile()
open "abc.xml" for binary access read as #f
 ......
    
        
    
    Private Sub Command1_Click()
Dim MyString() As String
Open "a.xml" For Binary As #1  ' 打开刚创建的文件。
ReDim MyString(LOF(1) - 1)
   Put #1, , MyRecord     ' 读入所有字符到变量中 ......
    
        
    
    现在有个xml文件是<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
  xm ......
    
        
    
    dim a as string,b as string,c as string
a="工程编号,单位工程名称,分部工程编号"
b="单位工程名称"
c="单位"
怎么才能判断出a字符串中存在b字符串,而不存在c字符串
看看i ......