解压在c盘

源代码在线查看: xtp-strict.xtp

软件大小: 4683 K
上传用户: xufengping716
关键词: 解压
下载地址: 免注册下载 普通下载 VIP

相关代码

				Strict XSL								Resin, of course, also supports strict XSL syntax.  Strict XSL is				more verbose and less readable, but has the advantage of being more standard.								The following stylesheet is exactly equivalent to the previous one but				uses strict XSL syntax.												<xsl:stylesheet>								<!-- make sure '<' is not printed as '&lt;' -->				<xsl:output disable-output-escaping='true'/>								<!-- copy input to output -->				<xsl:template match='*|@*'>				<xsl:copy>				<xsl:apply-templates select='node()|@*'/>				</xsl:copy>				</xsl:template>								<!-- rewrite <a href> -->				<xsl:template match='a[@href]'>				<a href='<%= response.encodeURL("{@href}") %>'>				  <xsl:apply-templates select='node()|@*[name(.)!="href"]'/>				</a>				</xsl:template>								</xsl:stylesheet>											

相关资源