新书推介:《语义网技术体系》
作者:瞿裕忠,胡伟,程龚
   XML论坛     W3CHINA.ORG讨论区     计算机科学论坛     SOAChina论坛     Blog     开放翻译计划     新浪微博  
 
  • 首页
  • 登录
  • 注册
  • 软件下载
  • 资料下载
  • 核心成员
  • 帮助
  •   Add to Google

    >> 本版讨论XSL,XSLT,XSL-FO,CSS等技术
    [返回] 中文XML论坛 - 专业的XML技术讨论区XML.ORG.CN讨论区 - XML技术『 XSL/XSLT/XSL-FO/CSS 』 → xslt 读数据从EXCEL XML 文件 查看新帖用户列表

      发表一个新主题  发表一个新投票  回复主题  (订阅本版) 您是本帖的第 12956 个阅读者浏览上一篇主题  刷新本主题   树形显示贴子 浏览下一篇主题
     * 贴子主题: xslt 读数据从EXCEL XML 文件 举报  打印  推荐  IE收藏夹 
       本主题类别: 样式表技术(XSL, XSLT, XSL-FO, CSS)    
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客楼主
    发贴心情 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>



       收藏   分享  
    顶(0)
      




    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 6:43:00
     
     Qr 帅哥哟,离线,有人找我吗?
      
      
      威望:9
      等级:博士二年级(版主)
      文章:4392
      积分:29981
      门派:XML.ORG.CN
      注册:2004/5/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给Qr发送一个短消息 把Qr加入好友 查看Qr的个人资料 搜索Qr在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Qr的主页 引用回复这个贴子 回复这个贴子 查看Qr的博客2
    发贴心情 
    <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!!!!!
    说到这想必你应该明白代码错在哪了吧。

    ----------------------------------------------
    没人帮忙,那就靠自己,自己才是最好的老师!本人拒绝回答通过站内短消息提出的问题!

    blog:http://Qr.blogger.org.cn

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 15:16:00
     
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客3
    发贴心情 
    但我用APPLY-TEMPLATES SELECT="DATA", 然后才用XSL:VALUE-OF  SELECT=".",数据读取应该是在DATA 元素下。
    你能帮我写出你建议的CODE吗?
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 15:32:00
     
     Qr 帅哥哟,离线,有人找我吗?
      
      
      威望:9
      等级:博士二年级(版主)
      文章:4392
      积分:29981
      门派:XML.ORG.CN
      注册:2004/5/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给Qr发送一个短消息 把Qr加入好友 查看Qr的个人资料 搜索Qr在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Qr的主页 引用回复这个贴子 回复这个贴子 查看Qr的博客4
    发贴心情 
    二者先后和数据输出没有关系,那行VALUE-OF 根本就不会因为APPLY-TEMPLATES在先去取DATA的值。应该把VALUE-OF 写在Data所指的模板中。

    ----------------------------------------------
    没人帮忙,那就靠自己,自己才是最好的老师!本人拒绝回答通过站内短消息提出的问题!

    blog:http://Qr.blogger.org.cn

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 15:45:00
     
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客5
    发贴心情 

       <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>

    还是不行啊。

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 16:01:00
     
     Qr 帅哥哟,离线,有人找我吗?
      
      
      威望:9
      等级:博士二年级(版主)
      文章:4392
      积分:29981
      门派:XML.ORG.CN
      注册:2004/5/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给Qr发送一个短消息 把Qr加入好友 查看Qr的个人资料 搜索Qr在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Qr的主页 引用回复这个贴子 回复这个贴子 查看Qr的博客6
    发贴心情 
    EXCEL XML?

    ----------------------------------------------
    没人帮忙,那就靠自己,自己才是最好的老师!本人拒绝回答通过站内短消息提出的问题!

    blog:http://Qr.blogger.org.cn

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/11 16:39:00
     
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客7
    发贴心情 
    <?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格式
    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/12 4:23:00
     
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客8
    发贴心情 
    <?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,应该所有元素都显示出来,但显示空白。请问高手怎么解决》?

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/13 11:20:00
     
     Qr 帅哥哟,离线,有人找我吗?
      
      
      威望:9
      等级:博士二年级(版主)
      文章:4392
      积分:29981
      门派:XML.ORG.CN
      注册:2004/5/15

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给Qr发送一个短消息 把Qr加入好友 查看Qr的个人资料 搜索Qr在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Qr的主页 引用回复这个贴子 回复这个贴子 查看Qr的博客9
    发贴心情 
    用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倍,为节约空间,压缩了上传。

    ----------------------------------------------
    没人帮忙,那就靠自己,自己才是最好的老师!本人拒绝回答通过站内短消息提出的问题!

    blog:http://Qr.blogger.org.cn

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/13 15:33:00
     
     armis 帅哥哟,离线,有人找我吗?
      
      
      等级:大一新生
      文章:6
      积分:75
      门派:XML.ORG.CN
      注册:2009/11/11

    姓名:(无权查看)
    城市:(无权查看)
    院校:(无权查看)
    给armis发送一个短消息 把armis加入好友 查看armis的个人资料 搜索armis在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 引用回复这个贴子 回复这个贴子 查看armis的博客10
    发贴心情 
    以下是引用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"从源文件
    现在可以显示我向要的,只是有什么办法不改变源文件,而又能显示想要的格式?

    点击查看用户来源及管理<br>发贴IP:*.*.*.* 2009/11/16 10:25:00
     
     GoogleAdSense
      
      
      等级:大一新生
      文章:1
      积分:50
      门派:无门无派
      院校:未填写
      注册:2007-01-01
    给Google AdSense发送一个短消息 把Google AdSense加入好友 查看Google AdSense的个人资料 搜索Google AdSense在『 XSL/XSLT/XSL-FO/CSS 』的所有贴子 访问Google AdSense的主页 引用回复这个贴子 回复这个贴子 查看Google AdSense的博客广告
    2024/5/1 3:43:58

    本主题贴数10,分页: [1]

    管理选项修改tag | 锁定 | 解锁 | 提升 | 删除 | 移动 | 固顶 | 总固顶 | 奖励 | 惩罚 | 发布公告
    W3C Contributing Supporter! W 3 C h i n a ( since 2003 ) 旗 下 站 点
    苏ICP备05006046号《全国人大常委会关于维护互联网安全的决定》《计算机信息网络国际联网安全保护管理办法》
    216.797ms