以文本方式查看主题

-  中文XML论坛 - 专业的XML技术讨论区  (http://bbs.xml.org.cn/index.asp)
--  『 WORD to XML, HTML to XML 』  (http://bbs.xml.org.cn/list.asp?boardid=13)
----  xslt怎么样才能把xml转成html  (http://bbs.xml.org.cn/dispbbs.asp?boardid=13&rootid=&id=21002)


--  作者:urmyfriend
--  发布时间:8/9/2005 3:05:00 PM

--  xslt怎么样才能把xml转成html
关于xslt怎么样才能把xml转成html的问题到处可以找到答案,但关键是转后之后怎么办呢?大家都说直接在IE中打开那个以转换好后的xml文件就可以看到了,可是我觉得那是自欺欺人,因为它虽然是按xsl的要求显示了变了样的xml,可到底它还是个xml而不是html!
也就是说还是可以通过查看源文件看到xml中的所有内容的!
因为我学识有限,所以办不到!但我想问下高手们,是不是有个什么工具或是什么方法能把这样的一个xml和一个xsl关联起来直接在客户端输出一个html或asp或jsp文件的?总不见得让别人在网址中输入http://xxx/yyy.xml吧?
谢谢大家关注
--  作者:Qr
--  发布时间:8/10/2005 12:07:00 PM

--  
ASP:
Dim xmldoc
Set xmldoc=server.CreateObject("MSXML2.DOMDocument")
xmldoc.async=False
xmldoc.load server.Mappath("yourxml.xml")

Dim xsldoc
Set xsldoc=Server.CreateObject("MSXML2.DOMDocument")
xsldoc.async=False
xsldoc.load Server.Mappath("yourxsl.xsl")
Response.write xmldoc.TransFormNode(xsldoc)


--  作者:urmyfriend
--  发布时间:8/10/2005 3:18:00 PM

--  
谢谢,我昨天也找到了些javascript中转换的资料,为了方便,我同时又把它改成了VB,制成了一个小工具,可以把xml根据xsl变成指定的html或其它格式,支持相对,绝对,网络路径,当然这可能是很简单的,我完全是为了自己以后方便。如果朋友们谁有兴趣的发个邮件给我我把它发过来看看。真的感谢朋友们的支持。 楼上的ASP代码我马上试一下看看,谢谢!
--  作者:urmyfriend
--  发布时间:8/10/2005 3:27:00 PM

--  
谢谢Qr,看来问你比看书强多了,我买的好几本书上的例子的代码都是没法正确调试出来的,你的代码一下子出结果了^-^
--  作者:Qr
--  发布时间:8/10/2005 6:15:00 PM

--  
以下是引用urmyfriend在2005-8-10 15:27:26的发言:
谢谢Qr,看来问你比看书强多了,我买的好几本书上的例子的代码都是没法正确调试出来的,你的代码一下子出结果了^-^


过奖了:)
你在3楼提到的转换,是纯Javascript做的xslt转换吗?偶一直在找AJAX方面的资料,都没有什么好的东东。如果可以,把源代码发上来如何,或者给偶发一份瞧瞧。
--  作者:urmyfriend
--  发布时间:8/11/2005 12:12:00 PM

--  
javascript只是写的把它在html中显示从xml中得到的数据,代码是很简单的,不知道是否会见笑呢,不过,这个东西确实是参考过几本书上写错的代码后,自己调试过程中纠正的,当然也许是我运气比较差,也许在一本好的书上就直接有源代码。我不知这里对ctrl-v会产生什么影响,能所见即所得的显示吗?
假设有一个数据文件是example.xml,样式表转换文件example.xsl(符合http://www.w3.org/1999/XSL/Transform),以下是javascript代码:
 <script language="javascript" for="window" event="onload">
 <!--
  var theXml=new ActiveXObject("Microsoft.xmldom");
  var theXsl=new ActiveXObject("Microsoft.xmldom");
  theXml.load("example.xml");
  theXsl.load("example.xsl");
  document.all.item("theTag").innerHTML=theXml.transformNode(theXsl.documentElement);
 -->
 </script>

在需要显示这个xml文档经xslt转换内容地地方插入语句
<div id="theTag"></div>

以上代码是很简单的,我另外把它编成了VB代码的小工具用以将xml经xsl直接生成html或xml,这完全是出自于我看到好多书上提到类似的工具而不告诉我哪有下载得到的。
很荣幸进入xml的世界才两周就能与高手们交流和得到高手们的帮助。


--  作者:Qr
--  发布时间:8/11/2005 1:01:00 PM

--  
代码还是居于MSXML,偶还以为你有AJAX方面的资料呢?在网上搜了半天,没几篇有用的东西:(
--  作者:urmyfriend
--  发布时间:8/11/2005 1:24:00 PM

--  
哦,我是不大懂,不好意思,其实我也想找能完全开放的东东,依赖微软的话就没法实现完全独立了:(
--  作者:skater
--  发布时间:8/26/2005 2:04:00 PM

--  
StreamResult result = new StreamResult(new File"XercesGenerate.xml"));                         
Source xsl = new StreamSource("template.xsl");    
Templates stylesheet = tfactory.newTemplates(xsl);          
// 将DOM对象转化为DOMSource类对象,该对象表现为转化         
// 成别的表达形式的信息容器。             
// 调用API,将DOM文档转化成XML文件。     
Transformer transformer = stylesheet.newTransformer();                                 
transformer.transform(source, result);
--  作者:师父2005
--  发布时间:10/27/2005 4:33:00 PM

--  
还是没看到什么重点的东西。如果是用js显示xml的时候还要插入新的节点呢。我只知道在读出xml后appendchildNodes可以的,然后调用xsl显示,不过具体的实现到现在还没看过。
--  作者:jqklw
--  发布时间:12/13/2005 10:42:00 PM

--  
学习,再学习
--  作者:huanghuck
--  发布时间:12/20/2005 1:18:00 AM

--  
看不懂其中的问题
--  作者:steve
--  发布时间:3/25/2006 9:13:00 PM

--  
大哥,帮个忙!我的一个EXCEL文件,通过EMAIL发过来后,变成了XML格式,打不开也看不懂,请问怎样才能把这个XML格式转换成有EXCEL格式,多谢了!急!!!
--  作者:steve
--  发布时间:3/25/2006 9:15:00 PM

--  
大哥,帮个忙!我的一个EXCEL文件,通过EMAIL发过来后,变成了XML格式,打不开也看不懂,请问怎样才能把这个XML格式转换成有EXCEL格式,多谢了!急!!!请回复QQ:29746389或E-mail:cqwyyh@sohu.com,不胜感激!!!
--  作者:steve
--  发布时间:3/25/2006 9:18:00 PM

--  
大哥,帮忙解一下下面这个XML文件,原来是EXCEL格式的,请帮我解成EXCEL格式,多谢了!!!
<?xml version="1.0"?>
<?mso-application progid="Excel.Sheet"?>
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
  <Author>asus</Author>
  <LastAuthor>asus</LastAuthor>
  <LastPrinted>2006-01-18T04:57:35Z</LastPrinted>
  <Created>2005-10-13T02:57:37Z</Created>
  <LastSaved>2006-02-06T05:56:54Z</LastSaved>
  <Version>11.6360</Version>
</DocumentProperties>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
  <WindowHeight>9225</WindowHeight>
  <WindowWidth>11700</WindowWidth>
  <WindowTopX>240</WindowTopX>
  <WindowTopY>105</WindowTopY>
  <ProtectStructure>False</ProtectStructure>
  <ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
  <Style ss:ID="Default" ss:Name="Normal">
   <Alignment ss:Vertical="Center"/>
   <Borders/>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="12"/>
   <Interior/>
   <NumberFormat/>
   <Protection/>
  </Style>
  <Style ss:ID="m22219302">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219312">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219322">
   <Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219124">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219134">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219144">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22219154">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22234380">
   <Alignment ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="m22234390">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="m22234400">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="m22234410">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s21">
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="s22">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s23">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s24">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Color="#FF0000" ss:Bold="1"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s25">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="16" ss:Color="#FF0000"
    ss:Bold="1"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s26">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="16" ss:Color="#FF0000"
    ss:Bold="1"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s32">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
   <NumberFormat ss:Format="#,##0"/>
  </Style>
  <Style ss:ID="s33">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="11"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s34">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="9"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s35">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="12"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s37">
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s44">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
  <Style ss:ID="s48">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
   <Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s49">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s50">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#FFFF00" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s51">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
  </Style>
  <Style ss:ID="s52">
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
  </Style>
  <Style ss:ID="s53">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="12" ss:Color="#FF0000"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s54">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="9"/>
  </Style>
  <Style ss:ID="s55">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="11"/>
  </Style>
  <Style ss:ID="s56">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="12" ss:Color="#000000"/>
   <Interior ss:Color="#FFFFFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s58">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s59">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s60">
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s61">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="9"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s62">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="11"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s63">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="9"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s64">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s65">
   <Alignment ss:Horizontal="Left" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134" ss:Size="12" ss:Color="#FF0000"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s66">
   <Borders>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Top" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
   <Font ss:FontName="瀹嬩綋" x:CharSet="134"/>
   <Interior ss:Color="#99CCFF" ss:Pattern="Solid"/>
  </Style>
  <Style ss:ID="s72">
   <Alignment ss:Horizontal="Center" ss:Vertical="Center"/>
   <Borders>
    <Border ss:Position="Bottom" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Left" ss:LineStyle="Continuous" ss:Weight="1"/>
    <Border ss:Position="Right" ss:LineStyle="Continuous" ss:Weight="1"/>
   </Borders>
  </Style>
</Styles>
<Worksheet ss:Name="Sheet1">
  <Table ss:ExpandedColumnCount="9" ss:ExpandedRowCount="107" x:FullColumns="1"
   x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="14.25">
   <Column ss:StyleID="s21" ss:AutoFitWidth="0"/>
   <Column ss:StyleID="s22" ss:AutoFitWidth="0" ss:Width="60.75"/>
   <Column ss:StyleID="s23" ss:AutoFitWidth="0" ss:Width="79.5"/>
   <Column ss:StyleID="s23" ss:AutoFitWidth="0" ss:Width="81"/>
   <Column ss:StyleID="s23" ss:AutoFitWidth="0" ss:Width="110.25"/>
   <Column ss:StyleID="s23" ss:AutoFitWidth="0" ss:Width="174.75"/>
   <Column ss:StyleID="s23" ss:AutoFitWidth="0" ss:Width="177.75"/>
   <Column ss:AutoFitWidth="0" ss:Width="27.75"/>
   <Column ss:AutoFitWidth="0" ss:Width="12"/>
   <Row ss:AutoFitHeight="0" ss:Height="30.75">
    <Cell ss:Index="2" ss:StyleID="s24"><Data ss:Type="String">瀹㈡埛鍚嶇О</Data></Cell>
    <Cell ss:StyleID="s25"><Data ss:Type="String">鑱旂郴鐢佃瘽</Data></Cell>
    <Cell ss:StyleID="s25"><Data ss:Type="String">浼犵湡</Data></Cell>
    <Cell ss:StyleID="s25"><Data ss:Type="String">鎵嬫満</Data></Cell>
    <Cell ss:StyleID="s25"><Data ss:Type="String">鍦板潃</Data></Cell>
    <Cell ss:StyleID="s25"><Data ss:Type="String">鍏跺畠</Data></Cell>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:MergeDown="14" ss:StyleID="m22234380"><Data ss:Type="String">瀹佹尝</Data></Cell>
    <Cell><Data ss:Type="String">瀹佹尝绾㈡尝閫氳</Data></Cell>
    <Cell><Data ss:Type="Number">87720557</Data></Cell>
    <Cell><Data ss:Type="Number">87722444</Data></Cell>
    <Cell><Data ss:Type="Number">13175985866</Data></Cell>
    <Cell><Data ss:Type="String">寤鸿甯愬彿4367421592500418336</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">鍐滆甯愬彿9559980310162311610</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鑻遍鍏徃</Data></Cell>
    <Cell><Data ss:Type="String">27873633-801</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">缁翠慨锛?3777065932</Data></Cell>
    <Cell><Data ss:Type="String">涓北棣栧簻涓妤?lt;/Data></Cell>
    <Cell><Data ss:Type="String">13082998699钁e姞鏂?lt;/Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鐢敵鍏徃</Data></Cell>
    <Cell ss:Index="4"><Data ss:Type="Number">87305350</Data></Cell>
    <Cell><Data ss:Type="String">缁翠慨锛?7863535</Data></Cell>
    <Cell><Data ss:Type="String">鐏垫ˉ骞垮満4妤煎ぇ鍘?鍙?lt;/Data></Cell>
    <Cell><Data ss:Type="String">13806669778鏉庢澃</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">杩瘮鐗?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">87364713</Data></Cell>
    <Cell ss:Index="8" ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">涓畞</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="Number">87278259</Data></Cell>
    <Cell><Data ss:Type="Number">87281021</Data></Cell>
    <Cell><Data ss:Type="String">鍗㈡垚闆勶細13336891689</Data></Cell>
    <Cell><Data ss:Type="String">13566588368鍗㈡柊鍙?lt;/Data></Cell>
    <Cell><Data ss:Type="String">浼犵湡锛?7286188</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">澶╁畞灏忔</Data></Cell>
    <Cell><Data ss:Type="Number">87263459</Data></Cell>
    <Cell ss:Index="8" ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">涓婃捣鑲栧嘲</Data></Cell>
    <Cell><Data ss:Type="String">O21-51017177</Data></Cell>
    <Cell><Data ss:Type="Number">51017359</Data></Cell>
    <Cell><Data ss:Type="String">13003126961鑲栭攱</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">涓婃捣鍦板钩绾块氳甯傚満浜旀ゼA29鍙?lt;/Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">閭斂甯愬彿9551002900023092788</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鍚夐緳</Data></Cell>
    <Cell><Data ss:Type="Number">87323239</Data></Cell>
    <Cell><Data ss:Type="Number">87300902</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">鍛ㄥ崼鑲?3105580288</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">姊呭悏榫?澶ф琛?8鍙峰ぉ涔嬫捣澶у帵1507瀹?lt;/Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">寤鸿甯愬彿4367421591292545405</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鏉窞</Data></Cell>
    <Cell><Data ss:Type="String">56851178锛堢淮锛?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">56851179</Data></Cell>
    <Cell><Data ss:Type="String">浼犵湡锛?6851012</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">鏉窞甯備笂濉樿矾239鍙蜂笢鏂硅豹鍥繆璞榿801瀹?lt;/Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">琚佹灄褰?lt;/Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="5"><Data ss:Type="String">鍐涘崕璁敭鍚庣枒浜嬫壘:</Data></Cell>
    <Cell ss:StyleID="s35"><Data ss:Type="String">瀛f尝濡?13185008866</Data></Cell>
    <Cell ss:StyleID="s22"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鏉窞闄堣唉</Data></Cell>
    <Cell><Data ss:Type="String">571-88316606</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13516809366闄堣唉</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">鏉窞甯備笂濉樿矾445鍙?06瀹ら檲濡欓湠</Data></Cell>
    <Cell ss:StyleID="s22"/>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鏉窞閲戜笘绾?lt;/Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="Number">13336158386</Data></Cell>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s22"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鏉窞瀹炬櫤璐告槗</Data></Cell>
    <Cell><Data ss:Type="String">571-81953527</Data></Cell>
    <Cell><Data ss:Type="String">571-88033202</Data></Cell>
    <Cell ss:Index="6" ss:StyleID="s33"/>
    <Cell ss:StyleID="s22"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">涓婃捣寮犲叴涓?lt;/Data></Cell>
    <Cell><Data ss:Type="String">021-51016201</Data></Cell>
    <Cell ss:Index="6" ss:StyleID="s34"><Data ss:Type="String">澶╃洰瑗胯矾99鍙峰湴骞崇嚎閫氳甯傚満涓妤?0鍙?lt;/Data></Cell>
    <Cell ss:StyleID="s22"/>
    <Cell ss:StyleID="s26"><Data ss:Type="String">濂?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="17.25">
    <Cell ss:Index="2"><Data ss:Type="String">鑱旀兂澶勫ゥ鐩?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">87197826</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">灏忚锛?3958249588</Data></Cell>
    <Cell><Data ss:Type="String">瀛欏溅杈夛細13567943927</Data></Cell>
    <Cell ss:Index="8" ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:MergeDown="4" ss:StyleID="m22234390"><Data ss:Type="String">濮滃北</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">濮滃北灏忓垬</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88093116</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88093126</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">濮滃北寤轰紵</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88094444</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88455678</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="String">13957868898鑰佹澘</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">濮滃北绔嬫槑</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88098956</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">濮滃北浼熻揪</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88098237</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">13957470194</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">濮滃北鏂版睙鍘?lt;/Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88452486</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:MergeDown="7" ss:StyleID="m22234400"><Data ss:Type="String">閭遍殬</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">閭遍殬鏂版睙鍘?lt;/Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88356629</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬鏅鸿揪</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88417561</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬鏃犻檺</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88411549</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="String">灏忔腐锛?6229700</Data></Cell>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬鏂板ぉ鍦?lt;/Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88414762</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬涓滄柟</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">13306662822</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬绁炲窞</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">28809718</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="String">鍒嗗簵锛?8364442</Data></Cell>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬鎭掕揪</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">28809866</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">閭遍殬鑱旈?lt;/Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">13003790204</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:MergeDown="3" ss:StyleID="m22234410"><Data ss:Type="String">鍜哥ゥ</Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">鍜哥ゥ娴锋腐</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88302366</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">13566335286</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="String">鍒嗗簵锛?8409088</Data></Cell>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">鍜哥ゥ鑱旈?lt;/Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88302966</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88303555</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">鍜哥ゥ鏅洪簾</Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88403785</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">13056756919</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s37">
    <Cell ss:Index="2" ss:StyleID="s22"><Data ss:Type="String">绋嬬粡鐞?lt;/Data></Cell>
    <Cell ss:StyleID="s23"><Data ss:Type="Number">88403095</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"><Data ss:Type="String">13605889968绋?lt;/Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s26"/>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="6" ss:StyleID="m22219124"><Data ss:Type="String">妯邯</Data></Cell>
    <Cell><Data ss:Type="String">灏忛浄</Data></Cell>
    <Cell><Data ss:Type="Number">56177222</Data></Cell>
    <Cell><Data ss:Type="String">88061818(鏂?</Data></Cell>
    <Cell><Data ss:Type="Number">13566335066</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">妯邯鏅鸿揪</Data></Cell>
    <Cell><Data ss:Type="Number">88063716</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">妯邯閫氳揪</Data></Cell>
    <Cell><Data ss:Type="Number">88062848</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13857884900(濉橀氳揪</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍛ㄤ笢</Data></Cell>
    <Cell><Data ss:Type="Number">88064622</Data></Cell>
    <Cell><Data ss:Type="Number">88062789</Data></Cell>
    <Cell><Data ss:Type="Number">13566335299</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">涓囪揪</Data></Cell>
    <Cell><Data ss:Type="Number">88063868</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13857896666鏈变簯宄?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鏃朵唬</Data></Cell>
    <Cell><Data ss:Type="Number">88472626</Data></Cell>
    <Cell><Data ss:Type="String">56228192(鏂?</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">绉诲姩</Data></Cell>
    <Cell><Data ss:Type="Number">88471772</Data></Cell>
    <Cell><Data ss:Type="String">13777002828浠?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13906627687</Data></Cell>
    <Cell><Data ss:Type="Number">13777000033</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="1" ss:StyleID="m22219134"><Data ss:Type="String">濉樻邯</Data></Cell>
    <Cell><Data ss:Type="String">涓滃崌</Data></Cell>
    <Cell><Data ss:Type="Number">88314470</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">涓浗鑱旈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88409018</Data></Cell>
    <Cell ss:Index="5" ss:StyleID="s22"><Data ss:Type="String">13362863006(鏉滃彲骞?</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="1" ss:StyleID="m22219144"><Data ss:Type="String">鑸熷北</Data></Cell>
    <Cell><Data ss:Type="String">宀卞北</Data></Cell>
    <Cell><Data ss:Type="String">O5804485775</Data></Cell>
    <Cell><Data ss:Type="Number">4485585</Data></Cell>
    <Cell><Data ss:Type="Number">13325901787</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍏í</Data></Cell>
    <Cell><Data ss:Type="String">O5806083477</Data></Cell>
    <Cell><Data ss:Type="String">6082057濮?lt;/Data></Cell>
    <Cell><Data ss:Type="String">6072588(寮?</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="1" ss:StyleID="m22219154"><Data ss:Type="String">涓嬪簲</Data></Cell>
    <Cell><Data ss:Type="String">闈欐尝</Data></Cell>
    <Cell><Data ss:Type="Number">88386392</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="Number">13616571380</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鑱旈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88343335</Data></Cell>
    <Cell><Data ss:Type="String">88343575鏂板簵</Data></Cell>
    <Cell><Data ss:Type="String">13362863008寰?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="3" ss:StyleID="s44"><Data ss:Type="String">闆嗕粫娓?lt;/Data></Cell>
    <Cell><Data ss:Type="String">鑱旈氭槦娌?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88036978</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">绉诲姩</Data></Cell>
    <Cell><Data ss:Type="Number">88036677</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍏村埄</Data></Cell>
    <Cell><Data ss:Type="Number">88422853</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="Number">13336628228</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2" ss:StyleID="s48"><Data ss:Type="String">鍗栧満</Data></Cell>
    <Cell ss:StyleID="s49"><Data ss:Type="Number">13023791277</Data></Cell>
    <Cell ss:StyleID="s49"><Data ss:Type="String">缁忕悊鍞愪簹濞?lt;/Data></Cell>
    <Cell ss:StyleID="s49"><Data ss:Type="String">鎵嬫満锛?3136383399</Data></Cell>
    <Cell ss:StyleID="s49"><Data ss:Type="String">浼犵湡锛?3003790603</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s50"><Data ss:Type="String">鐩堥氬崠鍦?lt;/Data></Cell>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s48"><Data ss:Type="String">87706111(寮绁ㄧ數</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">87710123(鐩樺簱鐢?lt;/Data></Cell>
    <Cell ss:StyleID="s49"/>
    <Cell ss:StyleID="s49"/>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="1" ss:StyleID="m22219302"><Data ss:Type="String">閯炴睙</Data></Cell>
    <Cell><Data ss:Type="String">閾舵渤</Data></Cell>
    <Cell><Data ss:Type="Number">56183828</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鑱旈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88030636</Data></Cell>
    <Cell><Data ss:Type="Number">13003710085</Data></Cell>
    <Cell><Data ss:Type="Number">13362863005</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="2" ss:StyleID="m22219312"><Data ss:Type="String">鍙ゆ灄</Data></Cell>
    <Cell><Data ss:Type="String">鐝嶇弽</Data></Cell>
    <Cell><Data ss:Type="Number">88276055</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">涓囪揪</Data></Cell>
    <Cell><Data ss:Type="Number">88156263</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">杈板В</Data></Cell>
    <Cell><Data ss:Type="Number">13362465550</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">澶钩妗?lt;/Data></Cell>
    <Cell><Data ss:Type="String">鏃ュ崌</Data></Cell>
    <Cell><Data ss:Type="Number">88316608</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">妯</Data></Cell>
    <Cell><Data ss:Type="String">鏂版柊</Data></Cell>
    <Cell><Data ss:Type="Number">88281716</Data></Cell>
    <Cell><Data ss:Type="Number">88271830</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">閽熷叕搴?lt;/Data></Cell>
    <Cell><Data ss:Type="String">鏂版睙鍘?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13081947409</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">瀹嬭瘡妗?lt;/Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">瀹嬭瘡妗?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88209191</Data></Cell>
    <Cell><Data ss:Type="String">86591957楠嗛┘</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="13.5">
    <Cell><Data ss:Type="String">浜戦緳</Data></Cell>
    <Cell><Data ss:Type="String">椋炴ˉ</Data></Cell>
    <Cell><Data ss:Type="Number">88346190</Data></Cell>
    <Cell><Data ss:Type="String">88342126鏂板簵</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">涔伴潰妗?lt;/Data></Cell>
    <Cell><Data ss:Type="String">鑱旈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">88423313</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13362863059闄堝悰</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s52"/>
    <Cell ss:StyleID="s52"><Data ss:Type="String">涔伴潰妗?寮?</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13355976696缈?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">娲炴ˉ</Data></Cell>
    <Cell><Data ss:Type="String">涓浗鑱旈?lt;/Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13362863002钄?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">楂樻ˉ</Data></Cell>
    <Cell><Data ss:Type="String">鑱旈?lt;/Data></Cell>
    <Cell ss:Index="4"><Data ss:Type="Number">88085666</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">楂樻ˉ</Data></Cell>
    <Cell><Data ss:Type="String">绉诲姩</Data></Cell>
    <Cell><Data ss:Type="Number">88014707</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s52"><Data ss:Type="String">涓滈挶婀栦笢鏂?lt;/Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13566335210鍛?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">鐬绘灊</Data></Cell>
    <Cell><Data ss:Type="String">鑰佹潹</Data></Cell>
    <Cell><Data ss:Type="Number">88308892</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13567887687鍜哥ゥ搴?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">瑁樻潙</Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">瑁樻潙</Data></Cell>
    <Cell><Data ss:Type="Number">88778882</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">涓滃畤鏂版潙</Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">涓滃畤鏂版潙</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">13732196158鏂?lt;/Data></Cell>
    <Cell ss:Index="5" ss:StyleID="s53"><Data ss:Type="Number">13685851565</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">澶╁彴</Data></Cell>
    <Cell><Data ss:Type="String">琛楀ご鐜嬪缓</Data></Cell>
    <Cell><Data ss:Type="Number">13306559933</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="Number">13362662826</Data></Cell>
    <Cell><Data ss:Type="String">13175338533鐜嬪缓鑰佸﹩</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">鑰佸簷</Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">(娉㈡尝)</Data></Cell>
    <Cell><Data ss:Type="Number">87907198</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2" ss:StyleID="s51"><Data ss:Type="String">(娴锋尝)</Data></Cell>
    <Cell><Data ss:Type="Number">87905876</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell><Data ss:Type="String">浼嶄埂</Data></Cell>
    <Cell><Data ss:Type="String">绉诲姩</Data></Cell>
    <Cell><Data ss:Type="Number">88333320</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13566336633鍙?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s54"><Data ss:Type="String">鐭崇煾鏂版睙鍘?lt;/Data></Cell>
    <Cell ss:Index="3" ss:StyleID="s53"><Data ss:Type="Number">13777020305</Data></Cell>
    <Cell ss:Index="5"><Data ss:Type="String">13566307030璐?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s55"><Data ss:Type="String">閾跺畯閫氳</Data></Cell>
    <Cell ss:Index="3" ss:StyleID="s56"><Data ss:Type="Number">88545765</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s61"><Data ss:Type="String">娌堝闂ㄧ豢缂?lt;/Data></Cell>
    <Cell ss:StyleID="s58"><Data ss:Type="String">寰愪匠</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">0580-3023639</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">13587058785</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">鑸熷北甯傛矆瀹堕棬娓斿競澶ц111鍙?lt;/Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">鎵撳缓琛?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s62"><Data ss:Type="String">闀囨捣鎭掓嘲</Data></Cell>
    <Cell ss:StyleID="s58"><Data ss:Type="String">鐜嬬宄?lt;/Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86299301</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s63"><Data ss:Type="String">闀囨捣鍩庢渤涓滆矾1骞?1-13鍙锋亽娉伴噾鏃朵唬鎵嬫満鍩?lt;/Data></Cell>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">闀囨捣璁揪</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s65"><Data ss:Type="Number">86254919</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86294788</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">13566588628</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"><Data ss:Type="String">鎵撳缓琛?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">瑙f郸閾舵渤</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">13777217018</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s66"><Data ss:Type="String">绾㈣仈鏂伴槼鍏?lt;/Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86154444</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">楠嗛┘澶╅┈</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86585508</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">鏌存ˉ鍏翠笟</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86064050</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">鏌存ˉ杩呮嵎</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">86065506</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">澶фΝ鍢夋簮</Data></Cell>
    <Cell ss:StyleID="s58"/>
    <Cell ss:StyleID="s59"><Data ss:Type="Number">13586916688</Data></Cell>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:AutoFitHeight="0" ss:StyleID="s60">
    <Cell ss:StyleID="s64"><Data ss:Type="String">鑸熷北瀹氭捣</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">8261178(搴?lt;/Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">0580-2044411</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">0580-2043432</Data></Cell>
    <Cell ss:StyleID="s59"><Data ss:Type="String">13115808888闄堥樋鑾?lt;/Data></Cell>
    <Cell ss:StyleID="s63"><Data ss:Type="String">鑸熷北甯傚畾娴峰尯浜烘皯鍗楄矾12鍙蜂腑鍥借仈閫氭墜鏈?lt;/Data></Cell>
    <Cell ss:StyleID="s63"><ss:Data ss:Type="String"
      xmlns="http://www.w3.org/TR/REC-html40">澶у崠鍦?11鐐瑰墠鎵撶數璇濆綋澶╁埌)<Font
       html:Color="#FF0000">鎵撳伐琛?lt;/Font></ss:Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:MergeDown="16" ss:StyleID="m22219322"><Data ss:Type="String">鍏跺畠</Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">灏忓悆搴?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">81052872</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">楂樺皬鑹?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13777065086</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">浠樹竴骞?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13362415558</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">姘稿拰璞嗘洐</Data></Cell>
    <Cell><Data ss:Type="Number">87334248</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鐔婄尗缁翠慨涓績</Data></Cell>
    <Cell><Data ss:Type="Number">87700449</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">灏忓垬缁у涵</Data></Cell>
    <Cell><Data ss:Type="Number">13306612071</Data></Cell>
    <Cell ss:Index="6"><Data ss:Type="String">鍩庨殟搴?5鍙?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">閫佹按</Data></Cell>
    <Cell><Data ss:Type="Number">87711860</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">渚浗杈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13958388661</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0" ss:Height="15.75">
    <Cell ss:Index="2"><Data ss:Type="String">涓夎仈</Data></Cell>
    <Cell><Data ss:Type="Number">27821287</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">灏忔豹</Data></Cell>
    <Cell><Data ss:Type="Number">13306646824</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍥借剦</Data></Cell>
    <Cell><Data ss:Type="Number">13306657215</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍚夊畨杈?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">87119177</Data></Cell>
    <Cell><Data ss:Type="Number">87139293</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">淇¤緣</Data></Cell>
    <Cell><Data ss:Type="Number">88087037</Data></Cell>
    <Cell><Data ss:Type="Number">88087076</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鐔婄尗棰嗗</Data></Cell>
    <Cell><Data ss:Type="Number">13008976888</Data></Cell>
    <Cell><Data ss:Type="String">13676700322鏂?lt;/Data></Cell>
    <Cell><Data ss:Type="String">灏忛┈锛?3780007770</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">寰愭案寮?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13586696912</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">璁稿抄绔?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13600626099</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">灏忛檲</Data></Cell>
    <Cell><Data ss:Type="String">`</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:StyleID="s72"/>
    <Cell><Data ss:Type="String">鍛ㄩ珮鏁?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">13116641170</Data></Cell>
    <Cell><Data ss:Type="String">13065619492濮?lt;/Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">鍋氱獥甯?lt;/Data></Cell>
    <Cell ss:StyleID="s22"><Data ss:Type="String">甯傚満鐢?7371447</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">闃茬洍闂ㄧ淮淇?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">87392258</Data></Cell>
   </Row>
   <Row ss:AutoFitHeight="0">
    <Cell ss:Index="2"><Data ss:Type="String">瀹夌幉闃?lt;/Data></Cell>
    <Cell><Data ss:Type="Number">82660772</Data></Cell>
   </Row>
  </Table>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <PageSetup>
    <Layout x:Orientation="Landscape"/>
   </PageSetup>
   <Unsynced/>
   <Print>
    <ValidPrinterInfo/>
    <PaperSizeIndex>9</PaperSizeIndex>
    <HorizontalResolution>200</HorizontalResolution>
    <VerticalResolution>200</VerticalResolution>
   </Print>
   <Selected/>
   <FreezePanes/>
   <FrozenNoSplit/>
   <SplitHorizontal>1</SplitHorizontal>
   <TopRowBottomPane>31</TopRowBottomPane>
   <ActivePane>2</ActivePane>
   <Panes>
    <Pane>
     <Number>3</Number>
    </Pane>
    <Pane>
     <Number>2</Number>
     <ActiveRow>42</ActiveRow>
     <ActiveCol>3</ActiveCol>
    </Pane>
   </Panes>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Sheet2">
  <Table ss:ExpandedColumnCount="0" ss:ExpandedRowCount="0" x:FullColumns="1"
   x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="14.25"/>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <Unsynced/>
   <Panes>
    <Pane>
     <Number>3</Number>
     <ActiveRow>9</ActiveRow>
     <ActiveCol>2</ActiveCol>
    </Pane>
   </Panes>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Sheet3">
  <Table ss:ExpandedColumnCount="0" ss:ExpandedRowCount="0" x:FullColumns="1"
   x:FullRows="1" ss:DefaultColumnWidth="54" ss:DefaultRowHeight="14.25"/>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <Unsynced/>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
</Workbook>


--  作者:Zhanglingjian2005
--  发布时间:6/21/2006 8:20:00 PM

--  
以下是引用urmyfriend在2005-8-11 12:12:00的发言:
javascript只是写的把它在html中显示从xml中得到的数据,代码是很简单的,不知道是否会见笑呢,不过,这个东西确实是参考过几本书上写错的代码后,自己调试过程中纠正的,当然也许是我运气比较差,也许在一本好的书上就直接有源代码。我不知这里对ctrl-v会产生什么影响,能所见即所得的显示吗?
假设有一个数据文件是example.xml,样式表转换文件example.xsl(符合http://www.w3.org/1999/XSL/Transform),以下是javascript代码:
   <script language="javascript" for="window" event="onload">
  <!--
   var theXml=new ActiveXObject(&quot;Microsoft.xmldom&quot;);
   var theXsl=new ActiveXObject(&quot;Microsoft.xmldom&quot;);
   theXml.load(&quot;example.xml&quot;);
   theXsl.load(&quot;example.xsl&quot;);
   document.all.item(&quot;theTag&quot;).innerHTML=theXml.transformNode(theXsl.documentElement);
  -->
  </script>

在需要显示这个xml文档经xslt转换内容地地方插入语句
<div id="theTag"></div>

以上代码是很简单的,我另外把它编成了VB代码的小工具用以将xml经xsl直接生成html或xml,这完全是出自于我看到好多书上提到类似的工具而不告诉我哪有下载得到的。
很荣幸进入xml的世界才两周就能与高手们交流和得到高手们的帮助。



楼上的方法可以把XML转为HTML,但是.XSL里的分页排序等效果就会失效,不知道什么原因.

还有个问题想问各位大俠:
  直接用超连接在IE中打开XML文件,IE可以正常显XML文件.
但是IE会缓存该XML文件,这样对于在数据库中查询会很麻烦,当我新增一条记录进去但是查出来的还是前一次的数据,不知道各位有没有碰到这样的问题?


--  作者:feb9903
--  发布时间:6/28/2006 11:42:00 AM

--  
up一下
--  作者:Zhanglingjian2005
--  发布时间:6/29/2006 4:54:00 PM

--  
怎么没有人答复偶的问题啊!
--  作者:xxsj
--  发布时间:7/13/2006 10:24:00 PM

--  
帮你顶一下!
W 3 C h i n a ( since 2003 ) 旗 下 站 点
苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
296.875ms