20080715 c# xml 1
http://www.yippeesoft.com

Writing XML in .NET Using XmlTextWriter
http://www.developer.com/net/net/article.php/1482531
XML is a hot topic. A primary reason for it being of interest is the fact that it is simple to understand and simple to use. Any programmer should be able to easily look at an XML file and understand its contents.

.NET contains a number of classes that support XML. Many of these classes make working with XML as easy as understanding XML. I\’m going to show you an example of one such class here. This is the XmlTextWriter class.

http://bytes.com/forum/thread561266.html
How to create this with XmlTextWriter

http://www.chinamacro.com/blog/visit_detail.aspx?blogID=44
如何用ASP.Net从数据库读取数据生成并发送XML数据(不生成XML文件)?

http://hi.baidu.com/irinihp/blog/item/c10752dd21fb6bdc8d102981.html
C#创建XML字符串

http://blog.csdn.net/kybd2006/archive/2007/08/07/1729562.aspx
 使用XmlTextWriter生成XML文件

 XmlTextWriter   xtw=new   XmlTextWriter(filename,System.Text.Encoding.GetEncoding("GB2312"));

 http://tech.ccidnet.com/art/1110/20050209/857855_1.html
 XmlTextWriter创建XML文件

 http://msdn.microsoft.com/zh-cn/library/wkee9k2s.aspx
 使用 XmlTextWriter 创建格式正确的 XML

XmlDocument xmldoc = new XmlDocument();
        XmlNode xRoot = xmldoc.CreateNode(XmlNodeType.Element, "root", "");
        xmldoc.AppendChild(xRoot);

        MemoryStream ms = new MemoryStream();
        XmlTextWriter tw = new XmlTextWriter(ms, Encoding.Unicode);
        tw.Formatting = Formatting.Indented;
        tw.Indentation = 4;
        xmldoc.Save(tw);

        byte[] ary = ms.ToArray();
        string s = Encoding.Unicode.GetString(ary);
//        Response.Write(s);  //输出看是正常的
        xmldoc.LoadXml(s);

http://dev.csdn.net/article/21/21432.shtm
使用XmlTextWriter对象创建XML文件

using   System;  
  using   System.IO;  
  using   System.Xml;  
   
  public   class   Sample  
  &leftsign;  
      public   static   void   Main()  
      &leftsign;  
          //   Create   the   XmlDocument.  
          XmlDocument   doc   =   new   XmlDocument();  
          doc.LoadXml("<book   genre=\’novel\’   ISBN=\’1-861001-57-5\’>"   +  
                                  "<title>Pride   And   Prejudice</title>"   +  
                                  "</book>");  
   
          //   Save   the   document   to   a   file.  
          doc.Save("data.xml");  
      &rightsign;  
  &rightsign;  

http://dev.rdxx.com/NET/SOAP/2005-7/27/120705632_9.shtml
C#中使用XML——编写XML

http://dev.csdn.net/article/64/64234.shtm
C#中使用XML——编写XML     

http://www.hackhome.com/InfoView/Article_180135.html
在Visual C#中使用XML之编写XML

http://developer.yahoo.com/dotnet/howto-xml_cs.html
Using Returned XML with C# – Yahoo! Developer Network

http://www.enet.com.cn/article/2004/0809/A20040809331749_2.shtml
Visual C#的Web XML编程

http://www.pcvz.com/Program/Programs/CCC/CCCnetprogram/Program_56400_10.html
在Visual C#里面运用XML指南之读取XML

读取节点中的值    
  XmlDocument   doc=new   XmlDocument();    
  doc.Load("config.xml");    
  XmlNode   xnserver   =   doc.SelectSingleNode("userdata/dataconnection/server");    

http://www.cnblogs.com/xiaopeng84/archive/2007/11/30/978271.html
C#利用XmlTextReader读取XML节点数据

http://blog.csdn.net/jackeyabc/archive/2007/11/01/1860702.aspx
 使用 XmlTextReader类

 http://topic.csdn.net/t/20040925/10/3407705.html
 读取XM文件中的信息!

 http://topic.csdn.net/u/20071114/14/ed88c486-3458-4e89-8437-1eaad574b8c3.html?553233395
 C#.net 用XmlTextReader和XmlDocument来读Xml文档

 http://support.microsoft.com/kb/301228/zh-cn
 HOW TO:在 .NET 框架 SDK 中读取数据流的 XML 数据

http://tech.sina.com.cn/s/s/2007-05-09/10471498264.shtml
实例:用Visual C#制作新闻阅读器

http://blog.sina.com.cn/s/blog_4bf6934f010007xy.html
在TreeView上进行Node定位(C#)

http://www.nohack.cn/code/net/2006-10-06/21783.html
C#中使用XML——实现DOM
本篇文章来源于 黑客手册
原文链接:http://www.nohack.cn/code/net/2006-10-06/21783.html

http://hi.baidu.com/jmh_521/blog/item/e3cd5a51cbd22e1d377abecc.html
C#中的XML

http://www.codeproject.com/KB/cpp/XmlHelper.aspx
XML for beginners and experts
By rudy.net

http://www.cnblogs.com/maxun/articles/323105.html
C#中XML的初步使用

http://dev.csdn.net/author/kingjiang/cd9a3c8136214b0a82b078ce16be3b25.html
C#中处理XML文档的方法

http://dev.rdxx.com/NET/CSharp/2002-1/27/005629624.shtml
C#读取XML文档

http://www.yesky.com/155/1915155_1.shtml
在Visual C#中使用XML指南之读取XML

http://www.codeproject.com/KB/XML/csharpcodedocumentation.aspx
C# and XML Source Code Documentation

http://www.codeproject.com/KB/XML/xml_serializationasp.aspx
Load and save objects to XML using serialization

http://hi.baidu.com/mytips/blog/item/2e412a0198b7340a7aec2c51.html

http://www.cnblogs.com/kevinton/archive/2007/06/27/797354.aspx
C#读写XML文件

http://www.codeproject.com/KB/cs/XML.aspx
XML for Beginners

历史博文

标签:,
二月 27, 2009 at 8:13 下午 by yippee 1,010 次
Category: Info
Tags: ,