⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reporttemplate2.xsl

📁 这是自己曾经参与开发的轻纺管理系统B/S版,有一定的研究价值!
💻 XSL
字号:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"> 
<head> 
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> 
<style> 
.xl24{mso-style-parent:style0;mso-number-format:"\@";text-align:right;} 
</style> 
<xml> 
<x:ExcelWorkbook> 
<x:ExcelWorksheets> 
<x:ExcelWorksheet> 
<x:Name>Sheet1</x:Name> 
<x:WorksheetOptions> 
	<x:ProtectContents>False</x:ProtectContents> 
	<x:ProtectObjects>False</x:ProtectObjects> 
	<x:ProtectScenarios>False</x:ProtectScenarios> 
</x:WorksheetOptions> 
</x:ExcelWorksheet> 
</x:ExcelWorksheets> 
</x:ExcelWorkbook> 
</xml> 
</head>  
<body> 
<table border="0" cellpadding="0" cellspacing="0"> 
<tr>
	<th colspan='#ColumnCount#'><Font size="5">#Title#</Font></th>
</tr>
<tr>
	<th colspan='#ColumnCount#' align="left">#SubTitle#</th>
</tr>
</table>
<table border="1" cellpadding="0" cellspacing="0"> 
<tr>#HeaderNames1#</tr>
<tr>#HeaderNames2#</tr> 
<xsl:for-each select="#NameSpace#">
<tr>#RowNames#</tr> 
</xsl:for-each> 
</table> 
</body> 
</html> 
</xsl:template> 
</xsl:stylesheet> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -