?? procedurelist.xsl
字號:
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<HTML>
<head>
<title>貸款審批項目列表</title>
</head>
<body>
<h1 align="center">貸款審批項目列表</h1>
<table cellspacing="2" cellpadding="2" border="1" align="center" bgcolor="eeeeee">
<tr>
<td width='20%'>日期</td>
<td width='60%'>審批事件</td>
<td width='20%'>狀態</td>
</tr>
<xsl:for-each select='ProcedureList/Procedure'>
<tr>
<td><xsl:value-of select="StartDate"/></td>
<td>
<a>
<xsl:attribute name='href'>getworkflowitem.ASP?UID=<xsl:value-of select='User/UserName'/>&
PWD=<xsl:value-of select='User/Password'/>&WFID=<xsl:value-of select='@WFID' />&PROCID=<xsl:value-of select='@ID' />
</xsl:attribute>
<xsl:value-of select='@Name'/>
</a>
</td>
<td><xsl:value-of select="Status"/></td>
</tr>
</xsl:for-each>
</table>
<a><h3 align="center" >請點擊具體項目進入審批細節</h3></a>
<a><xsl:attribute name='href'>login.asp</xsl:attribute><h3 align="center">【返回登陸界面】</h3></a>
</body>
</HTML>
</xsl:template>
</xsl:stylesheet>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -