以文本方式查看主题

-  计算机科学论坛  (http://bbs.xml.org.cn/index.asp)
--  『 XSL/XSLT/XSL-FO/CSS 』  (http://bbs.xml.org.cn/list.asp?boardid=8)
----  xslt 读数据从EXCEL XML 文件  (http://bbs.xml.org.cn/dispbbs.asp?boardid=8&rootid=&id=78151)


--  作者:armis
--  发布时间:11/11/2009 6:43:00 AM

--  xslt 读数据从EXCEL XML 文件
请大家帮忙看看我的XSLT,为什么显示空白在网页上?

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         
 <xsl:output method="html" version="1.0" encoding="UTF-8" />

 <xsl:template match="/">
  
      <html> <head> <title> Smartlinx 3 Ltd</title> </head>
                <body>
       <xsl:apply-templates />
          </body>
       </html>
        </xsl:template>
  
 
    <xsl:template match="Worksheet">
       <xsl:apply-templates select="Table"/>
    </xsl:template>
   

    <xsl:template match="Table">
      <table border="1">
          <xsl:apply-templates select="Row"/>
      </table>
    </xsl:template>

     <xsl:template match="Row">
      <tr>
        <xsl:for-each select="Cell">
        <xsl:apply-templates select="Data"/>
           <td><xsl:value-of select="." /></td>
        </xsl:for-each>
      </tr>
     </xsl:template>
</xsl:stylesheet>



--  作者:Qr
--  发布时间:11/11/2009 3:16:00 PM

--  
<xsl:for-each select="Cell">
        <xsl:apply-templates select="Data"/>
           <td><xsl:value-of select="." /></td>
        </xsl:for-each>
是Cell有数据还是Data有数据?代码中的value-of select的可是Cell!!!!!
说到这想必你应该明白代码错在哪了吧。
--  作者:armis
--  发布时间:11/11/2009 3:32:00 PM

--  
但我用APPLY-TEMPLATES SELECT="DATA", 然后才用XSL:VALUE-OF  SELECT=".",数据读取应该是在DATA 元素下。
你能帮我写出你建议的CODE吗?
--  作者:Qr
--  发布时间:11/11/2009 3:45:00 PM

--  
二者先后和数据输出没有关系,那行VALUE-OF 根本就不会因为APPLY-TEMPLATES在先去取DATA的值。应该把VALUE-OF 写在Data所指的模板中。
--  作者:armis
--  发布时间:11/11/2009 4:01:00 PM

--  

   <xsl:template match="Row">
      <tr>
        <xsl:for-each select="Cell">
        <xsl:apply-templates select="Data"/>
      
        </xsl:for-each>
      </tr>
     </xsl:template>
   
    <xsl:template match="Data">
            <td><xsl:value-of select="." /></td>
     </xsl:template>

还是不行啊。


--  作者:Qr
--  发布时间:11/11/2009 4:39:00 PM

--  
EXCEL XML?
--  作者:armis
--  发布时间:11/12/2009 4:23:00 AM

--  
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="test.xsl" ?>
<?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>sl3mianuser</Author>
  <LastAuthor>sl3mianuser</LastAuthor>
  <LastPrinted>2008-05-27T21:23:25Z</LastPrinted>
  <Created>2007-09-18T01:24:12Z</Created>
  <LastSaved>2008-10-16T02:25:22Z</LastSaved>
  <Company>Smartlinx3</Company>
  <Version>11.6568</Version>
</DocumentProperties>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
  <WindowHeight>13035</WindowHeight>
  <WindowWidth>15195</WindowWidth>
  <WindowTopX>480</WindowTopX>
  <WindowTopY>60</WindowTopY>
  <ProtectStructure>False</ProtectStructure>
  <ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
<Styles>
  ------------ *****----------------------
</Styles>
<Worksheet ss:Name="CafenetAP">
  <Table ss:ExpandedColumnCount="11" ss:ExpandedRowCount="64" x:FullColumns="1"
   x:FullRows="1">
   <Column ss:AutoFitWidth="0" ss:Width="186.75"/>
   <Column ss:AutoFitWidth="0" ss:Width="63"/>
   <Column ss:AutoFitWidth="0" ss:Width="66.75"/>
   <Column ss:AutoFitWidth="0" ss:Width="92.25"/>
   <Column ss:AutoFitWidth="0" ss:Width="50.25"/>
   <Column ss:AutoFitWidth="0" ss:Width="75.75"/>
   <Column ss:AutoFitWidth="0" ss:Width="71.25"/>
   <Column ss:StyleID="s61" ss:AutoFitWidth="0" ss:Width="90.75"/>
   <Column ss:StyleID="s61" ss:AutoFitWidth="0" ss:Width="183.75"/>
   <Column ss:Index="11" ss:AutoFitWidth="0" ss:Width="108"/>
   <Row ss:Height="20.25">
    <Cell ss:StyleID="s24"><Data ss:Type="String">Hardware information</Data></Cell>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:StyleID="s23"/>
    <Cell ss:Index="8" ss:StyleID="s70"/>
    <Cell ss:StyleID="s69"><Data ss:Type="String">CityLink(current)</Data></Cell>
    <Cell ss:MergeAcross="1" ss:StyleID="s62"><Data ss:Type="String">DTS(future)</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s28"><Data ss:Type="String">Proxims:OriNOCO AP-700 a/b/g</Data></Cell>
    <Cell ss:StyleID="s28"><Data ss:Type="String">CLI     -------  Veuch9mo</Data></Cell>
    <Cell ss:StyleID="s28"/>
    <Cell ss:StyleID="s28"/>
    <Cell ss:Index="6" ss:StyleID="s60"><Data ss:Type="String">Update :</Data></Cell>
    <Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">IP range</Data></Cell>
    <Cell ss:StyleID="s68"><Data ss:Type="String">192.48.3.34---46</Data></Cell>
    <Cell ss:MergeAcross="1" ss:StyleID="s81"><Data ss:Type="String">202.174.184.0/24</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s28"/>
    <Cell ss:StyleID="s28"><Data ss:Type="String">HTTP  -------  User name: field blank</Data></Cell>
    <Cell ss:StyleID="s28"/>
    <Cell ss:StyleID="s28"/>
    <Cell ss:Index="6" ss:StyleID="s59"><Data ss:Type="DateTime">2008-08-04T00:00:00.000</Data></Cell>
    <Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">Netmask</Data></Cell>
    <Cell ss:StyleID="s68"><Data ss:Type="String">255.255.255.240</Data></Cell>
    <Cell ss:MergeAcross="1" ss:StyleID="s81"><Data ss:Type="String">255.255.255.0</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s28"><Data ss:Type="String">Mikrotik:RouterBoard 532</Data></Cell>
    <Cell ss:StyleID="s28"><Data ss:Type="String">CLI     ------- </Data></Cell>
    <Cell ss:StyleID="s28"/>
    <Cell ss:StyleID="s28"/>
    <Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">Gateway</Data></Cell>
    <Cell ss:StyleID="s68"><Data ss:Type="String">192.48.3.33</Data></Cell>
    <Cell ss:MergeAcross="1" ss:StyleID="s81"><Data ss:Type="String">202.174.184.1</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s28"><Data ss:Type="String">Management IP:</Data></Cell>
    <Cell ss:StyleID="s28"><Data ss:Type="String">192.168.30.1</Data></Cell>
    <Cell ss:StyleID="s28"/>
    <Cell ss:StyleID="s28"/>
    <Cell ss:Index="8" ss:StyleID="s67"><Data ss:Type="String">Internet IP</Data></Cell>
    <Cell ss:StyleID="s68"><Data ss:Type="String">202.8.44.113,     zc-sl3.citylink.co.nz</Data></Cell>
    <Cell ss:MergeAcross="1" ss:StyleID="s81"><Data ss:Type="String">202.68.80.50</Data></Cell>
   </Row>
   <Row ss:Index="7" ss:Height="20.25" ss:StyleID="s23">
    <Cell ss:StyleID="s24"><Data ss:Type="String">Porirua Area:</Data></Cell>
    <Cell ss:StyleID="s24"/>
    <Cell ss:Index="8" ss:StyleID="s62"/>
    <Cell ss:StyleID="s62"/>
   </Row>
   <Row ss:StyleID="s27">
    <Cell ss:StyleID="s26"><Data ss:Type="String">Place</Data></Cell>
    <Cell ss:StyleID="s31"><Data ss:Type="String">AP name</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">IP address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Mac Address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP type</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP Serial NO.</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Date installed</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Contact Person</Data></Cell>
    <Cell ss:StyleID="s31"><Data ss:Type="String">Contact Number</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Note</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Ping</Data></Cell>
   </Row>
   <Row ss:StyleID="s27">
    <Cell ss:StyleID="s38"><ss:Data ss:Type="String"
      xmlns="http://www.w3.org/TR/REC-html40"><B>Porirua Pataka </B><I>(on Soekris(Citylink) over internet adsl 210.54.27.145)</I></ss:Data></Cell>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s29"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Peter van der Burg</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">027 530 3974</Data></Cell>
    <Cell ss:StyleID="s42"/>
    <Cell ss:StyleID="s58"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s39"><Data ss:Type="String">Porirua Library</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3005</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.5</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims </Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51570201</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:Index="10" ss:StyleID="s35"/>
    <Cell ss:StyleID="s55"><Data ss:Type="String">n</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">           Kaizen Café</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3006</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.6</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims </Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51570215</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">n</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">           Community Room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3007</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.7</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims </Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51560246</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">n</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Gnd Level Asset Finance Bldg</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3318</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">172.21.54.18</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:1A</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2007-03-21T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Whitireia Community Polytech </Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3320</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">172.21.54.20</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:05:77:A8</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2007-08-20T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Steve Cosgrove</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">021 151 6772</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s79"><Data ss:Type="String">Sports &amp; Evens Center</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s43"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row ss:StyleID="s78">
    <Cell ss:StyleID="s74"><Data ss:Type="String">1st Flr small area</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Cafenet3323</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">172.21.54.23</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">00:0C:42:1B:4B:9A</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s77"/>
    <Cell ss:StyleID="s76"/>
   </Row>
   <Row ss:StyleID="s78">
    <Cell ss:StyleID="s74"><Data ss:Type="String">1st Flr large area</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Cafenet3324</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">172.21.54.24</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">00:0C:42:1B:4B:80</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s77"/>
    <Cell ss:StyleID="s76"/>
   </Row>
   <Row ss:StyleID="s78">
    <Cell ss:StyleID="s74"><Data ss:Type="String">Café area Gnd Flr</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Cafenet3325</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">172.21.54.25</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">00:0C:42:1B:4B:74</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s77"/>
    <Cell ss:StyleID="s76"/>
   </Row>
   <Row ss:StyleID="s78">
    <Cell ss:StyleID="s79"><Data ss:Type="String">PCC public Library Pataka Porirua</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Cafenet3328</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">172.21.54.28</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">00:0C:42:1B:4B:8A</Data></Cell>
    <Cell ss:StyleID="s75"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s75"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s76"/>
    <Cell ss:StyleID="s77"/>
    <Cell ss:StyleID="s76"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s52"/>
    <Cell ss:StyleID="s52"/>
    <Cell ss:StyleID="s37"/>
    <Cell ss:StyleID="s52"/>
   </Row>
   <Row ss:Height="20.25" ss:StyleID="s23">
    <Cell ss:StyleID="s24"><Data ss:Type="String">Upper Hutt Area:</Data></Cell>
    <Cell ss:StyleID="s24"/>
    <Cell ss:Index="7" ss:StyleID="s45"/>
    <Cell ss:StyleID="s63"/>
    <Cell ss:StyleID="s63"/>
    <Cell ss:StyleID="s45"/>
    <Cell ss:StyleID="s59"/>
   </Row>
   <Row ss:StyleID="s27">
    <Cell ss:StyleID="s26"><Data ss:Type="String">Place</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP name</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">IP address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Mac Address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP type</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP Serial NO.</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Date installed</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Contact Person</Data></Cell>
    <Cell ss:StyleID="s31"><Data ss:Type="String">Contact Number</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Note</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Ping</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s46"><Data ss:Type="String"> Expressions Arts Center</Data></Cell>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">Peter Benner</Data></Cell>
    <Cell ss:StyleID="s64"><Data ss:Type="String">04 5272852,021 430561</Data></Cell>
    <Cell ss:StyleID="s56"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">CafeCibo (Gnd) reception</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3012</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">192.168.30.12</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:56:38:8A</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxim</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s65"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">(1st Floor) theatre</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3013</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">192.168.30.13</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:49:CB:4C</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxim</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">(2nd floor) green room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3014</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">192.168.30.14</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:56:38:70</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxim</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s43"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s38"><Data ss:Type="String">UHCC 1st Floor Computer Room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3319</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.19</Data></Cell>
    <Cell ss:StyleID="s43"><ss:Data ss:Type="String"
      xmlns="http://www.w3.org/TR/REC-html40"><U>00:0C:42:0C:22:35</U><Font> </Font></ss:Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2007-08-14T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"><Data ss:Type="String">Carl de Visser </Data></Cell>
    <Cell ss:StyleID="s65"><Data ss:Type="String">04 5272120,027 2499013</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s38"><Data ss:Type="String">for expression center</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s43"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">Steve Lock</Data></Cell>
    <Cell ss:StyleID="s65"><Data ss:Type="String">04-5272139,027 2860743</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s49"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s43"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Trentham City Shopping Center</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Mike Bisset Manager</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">027 262 6502</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Level 1 foodcourt</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3313</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.13</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:33</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2006-12-29T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Gnd Logan st</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3314</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.14</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:32</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2006-12-29T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Level 1Main St</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3315</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.15</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:34</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2006-12-29T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Gnd near instead ramp</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3316</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.16</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:31</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2006-12-29T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s38"><Data ss:Type="String">Smartlinx3 office</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3317</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">172.21.54.17</Data></Cell>
    <Cell ss:StyleID="s43"><ss:Data ss:Type="String"
      xmlns="http://www.w3.org/TR/REC-html40"><U>00:0C:42:0C:22:17</U><Font> </Font></ss:Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"><Data ss:Type="String">test AP</Data></Cell>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s72"><Data ss:Type="String">Mayfair Cafe</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">Cafenet3322</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">172.21.54.22</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">00:0C:42:1B:4B:8B</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"><Data ss:Type="String">0/4/08/2008</Data></Cell>
    <Cell ss:StyleID="s52"/>
    <Cell ss:StyleID="s52"/>
    <Cell ss:StyleID="s37"/>
    <Cell ss:StyleID="s52"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row ss:Height="20.25" ss:StyleID="s23">
    <Cell ss:StyleID="s24"><Data ss:Type="String">Lower Hutt Area:</Data></Cell>
    <Cell ss:StyleID="s24"/>
    <Cell ss:Index="8" ss:StyleID="s71"/>
    <Cell ss:StyleID="s62"/>
    <Cell ss:Index="11" ss:StyleID="s59"/>
   </Row>
   <Row ss:StyleID="s27">
    <Cell ss:StyleID="s26"><Data ss:Type="String">Place</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP name</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">IP address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Mac Address</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP type</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">AP Serial NO.</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Date installed</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Contact Person</Data></Cell>
    <Cell ss:StyleID="s31"><Data ss:Type="String">Contact Number</Data></Cell>
    <Cell ss:StyleID="s30"><Data ss:Type="String">Note</Data></Cell>
    <Cell ss:StyleID="s26"><Data ss:Type="String">Ping</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s50"><Data ss:Type="String">Library</Data></Cell>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s47"/>
    <Cell ss:StyleID="s66"><Data ss:Type="String">Arthur Howard</Data></Cell>
    <Cell ss:StyleID="s66"><Data ss:Type="String">04 570 6791,021 289 8874</Data></Cell>
    <Cell ss:StyleID="s57"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">research room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3008</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.8</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:56:38:76</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51560237</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">main area</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3009</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.9</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:49:CB:4E</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51600285</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">entrance</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3010</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.10</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:20:A6:56:38:9A</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Proxims</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">04UT51560255</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s38"><Data ss:Type="String">Little Theatre</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Arthur Howard</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">04 570 6791,021 289 8874</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Project room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3017</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.17</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0B:6B:4D:45:02</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">Cleaner's cupboard</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3015</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.15</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0B:6B:4D:43:3E</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">New Dowse</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Arthur Howard</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">04 570 6791,021 289 8874</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">reception desk area</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3019</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.19</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:3</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s40"><Data ss:Type="String">1st Floor meeting room</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3020</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.20</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:05:77:6D</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2007-09-03T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Horticultrual Hall</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3016</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.16</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0B:6B:4D:45:A9</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Arthur Howard</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">04 570 6791,021 289 8874</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Town Hall</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet3018</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">192.168.30.18</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0B:6B:4D:43:4D</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"><Data ss:Type="String">Arthur Howard</Data></Cell>
    <Cell ss:StyleID="s33"><Data ss:Type="String">04 570 6791,021 289 8874</Data></Cell>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Pavilion Building </Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet 3321</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">172.21.54.21</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:05:77:D7</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"><Data ss:Type="DateTime">2007-08-31T00:00:00.000</Data></Cell>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s43"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s44"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Workshop Café &amp; Brasserie,6 Daly st</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">Cafenet 3311</Data></Cell>
    <Cell ss:StyleID="s32"><Data ss:Type="String">172.21.54.11</Data></Cell>
    <Cell ss:StyleID="s43"><Data ss:Type="String">00:0C:42:0C:22:19</Data></Cell>
    <Cell ss:StyleID="s48"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"><Data ss:Type="String">n</Data></Cell>
   </Row>
   <Row>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s36"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s41"><Data ss:Type="String">Petone</Data></Cell>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s48"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s32"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s33"/>
    <Cell ss:StyleID="s35"/>
    <Cell ss:StyleID="s36"/>
   </Row>
   <Row>
    <Cell ss:StyleID="s53"><Data ss:Type="String">Foreshore Motel 5 Nelson St Petone </Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">Cafenet 3312</Data></Cell>
    <Cell ss:StyleID="s34"><Data ss:Type="String">172.21.54.12</Data></Cell>
    <Cell ss:StyleID="s54"><Data ss:Type="String">00:0C:42:0C:22:18</Data></Cell>
    <Cell ss:StyleID="s51"><Data ss:Type="String">Mikrotik</Data></Cell>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s34"/>
    <Cell ss:StyleID="s52"><Data ss:Type="String">Norm</Data></Cell>
    <Cell ss:StyleID="s52"><Data ss:Type="String">04-939-3609, foreshore@paradise.net.nz</Data></Cell>
    <Cell ss:StyleID="s37"/>
    <Cell ss:StyleID="s52"><Data ss:Type="String">y</Data></Cell>
   </Row>
   <Row>
    <Cell ss:Index="5" ss:StyleID="s25"/>
   </Row>
  </Table>
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <PageSetup>
    <Layout x:Orientation="Landscape"/>
    <Header x:Margin="0.16"
     x:Data="&amp;Lfile name:  &amp;F&amp;CPage &amp;P of &amp;N&amp;RPrinted on &amp;D at &amp;T"/>
    <Footer x:Margin="0.16"/>
    <PageMargins x:Bottom="0.17" x:Left="0.27" x:Right="0.35433070866141736"
     x:Top="0.36"/>
   </PageSetup>
   <FitToPage/>
   <Print>
    <ValidPrinterInfo/>
    <PaperSizeIndex>9</PaperSizeIndex>
    <Scale>72</Scale>
    <HorizontalResolution>600</HorizontalResolution>
    <VerticalResolution>600</VerticalResolution>
   </Print>
   <Selected/>
   <Panes>
    <Pane>
     <Number>3</Number>
     <ActiveRow>16</ActiveRow>
     <ActiveCol>1</ActiveCol>
    </Pane>
   </Panes>
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Sheet2">
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
<Worksheet ss:Name="Sheet3">
  <WorksheetOptions xmlns="urn:schemas-microsoft-com:office:excel">
   <ProtectObjects>False</ProtectObjects>
   <ProtectScenarios>False</ProtectScenarios>
  </WorksheetOptions>
</Worksheet>
</Workbook>


挺长的,所以把STYLT元素内容去掉了。文件原是XLS,是在EXCEL 2003 另存为XML格式
--  作者:armis
--  发布时间:11/13/2009 11:20:00 AM

--  
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
         
 <xsl:output method="html" version="1.0" encoding="UTF-8" />


 <xsl:template match="/">
  
      <html> <head> <title> Smartlinx 3 Ltd</title> </head>
   <body>
    <h1> Sl3  network</h1> 
                 <xsl:copy/>
 
   </body>
  </html>
    </xsl:template>
 


</xsl:stylesheet>


Ok 简单化,我用XSL:COPY,应该所有元素都显示出来,但显示空白。请问高手怎么解决》?


--  作者:Qr
--  发布时间:11/13/2009 3:33:00 PM

--  
用XSL:COPY当然可以COPY到所有元素,至于为什么都不会显示出来,即你说的“显示空白”,怀疑你没有按5楼的代码改,否则应该在IE中应该可以看到转换结果(无格式)。这个是因为EXCEL XML的Workbook使用了默认的命名空间
xmlns="urn:schemas-microsoft-com:office:spreadsheet"

这个命名空间的定义导致转换时命名空间冲突,因为xhtml也定义了默认的命名空间。
如果Workbook使用xmlns:namespace-prefix="namespaceURI"这种格式的命名空间,就不会存在这个问题。如果要保留Workbook的默认命名空间,如何显示,我不太清楚,平时很少用EXCEL XML。
以下是IE下Workbook使用xmlns:namespace-prefix="namespaceURI"这种格式的命名空间的转换结果截屏(部分)



不好意思,论坛不许传PNG格式图片,换JPG要大10倍,为节约空间,压缩了上传。


--  作者:armis
--  发布时间:11/16/2009 10:25:00 AM

--  
以下是引用Qr在2009-11-13 15:33:00的发言:
用XSL:COPY当然可以COPY到所有元素,至于为什么都不会显示出来,即你说的“显示空白”,怀疑你没有按5楼的代码改,否则应该在IE中应该可以看到转换结果(无格式)。这个是因为EXCEL XML的Workbook使用了默认的命名空间
xmlns="urn:schemas-microsoft-com:office:spreadsheet"

这个命名空间的定义导致转换时命名空间冲突,因为xhtml也定义了默认的命名空间。
如果Workbook使用xmlns:namespace-prefix="namespaceURI"这种格式的命名空间,就不会存在这个问题。如果要保留Workbook的默认命名空间,如何显示,我不太清楚,平时很少用EXCEL XML。
以下是IE下Workbook使用xmlns:namespace-prefix="namespaceURI"这种格式的命名空间的转换结果截屏(部分)



不好意思,论坛不许传PNG格式图片,换JPG要大10倍,为节约空间,压缩了上传。


谢了,我去掉了 xmlns="urn:schemas-microsoft-com:office:spreadsheet"从源文件
现在可以显示我向要的,只是有什么办法不改变源文件,而又能显示想要的格式?


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