预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共37页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

第8章学习目标第8章XML和Web服务8.1XML8.1.1XML概述简化格式的XML文档必须遵几个原则:<Studentversion="1.0"> <Inform> <Name>张三</Name> <Age>20</Age> <Hobby>唱歌</Hobby> </Inform> <Inform> <Name>李四</Name> <Age>20</Age> <Hobby>跳舞</Hobby> </Inform> <Inform> <Name>王五</Name> <Age>20</Age> <Hobby>游泳</Hobby> </Inform> </Student>8.1.2写XML文档XmlTextWriter写XML文档protectedvoidButton1_Click(objectsender,EventArgse) { try { //***********写xml文档*********** //创建XmlTextWriter类的实例对象,Server.MapPath表示在当前虚拟目录下 XmlTextWritertextWriter=newXmlTextWriter(Server.MapPath("~/test.xml"),null); textWriter.Formatting=Formatting.Indented; //开始写过程,调用WriteStartDocument方法 textWriter.WriteStartDocument(); //写入说明 //创建一个节点 textWriter.WriteStartElement("Administrator"); for(inti=0;i<10;i++) { textWriter.WriteElementString("No",i.ToString()); textWriter.WriteElementString("Name","张挚"+i.ToString()+"号"); } textWriter.WriteEndElement(); //写文档结束,调用WriteEndDocument方法 textWriter.WriteEndDocument(); //关闭textWriter textWriter.Close(); } catch(Exceptionex) { Console.WriteLine(ex.ToString()); } }8.1.3读XML文档源设计界面按钮事件按钮事件8.1.4XmlDocument类//*******读文档*********** XmlDocumentxmlFile=newXmlDocument(); xmlFile.Load(Server.MapPath("~/test.xml")); XmlNoderootNode=xmlFile.DocumentElement;//获取根节点 Label1.Text=rootNode.ChildNodes.Count.ToString(); //定义保存编号和姓名的变量 stringno="0"; stringvalue="0"; foreach(XmlNodenodeinrootNode.ChildNodes) { switch(node.Name) { case"No": no=node.InnerText.ToString(); break; case"Name": value=node.InnerText.ToString(); hs.Add(no,value); break; } }8.2Web服务8.2.1WebService简介8.2.2创建WebServiceWebMethod方法属性需要说明WebMethod方法属性需要说明四则运算功能的Web服务8.2.3发布WebService8.2.4使用WebService按钮事件