|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
大家可以自己去看一看.可以说看得想呕吐.以前有次下了个动网来看.里面连基本内置函数的保护措施(函数没防御性)都没有.难怪经常补这个补那个了.可能现在.NET版会好点吧XmlDocumentXmlDoc=newXmlDocument();
XmlDoc.Load(strFilePath);XslTransformxslt=newXslTransform();
xslt.Load(strXslPath);
XsltArgumentListxslArg=newXsltArgumentList();
xslArg.AddParam("Key1","",IXPath);
xslArg.AddParam("Path","",strPath);
StringBuildersb=newStringBuilder("");
StringWritersw=newStringWriter(sb);
XmlTextWriterwriter=newXmlTextWriter(sw);
xslt.Transform(XmlDoc,xslArg,writer,null);
writer.Close();
HXML.InnerHtml=sb.ToString();
这是xsl文件
<?xmlversion="1.0"encoding="UTF-8"?>
<xsl:stylesheetxmlns:xsl="http://www.w3.org/1999/XSL/Transform"version="1.0">
<xsl:paramname="Key1"/>
<xsl:paramname="Path"/>
<xsl:templatematch="/">
<xsl:apply-templatesselect="/DB/L[@Key=$Key1]"/>
</xsl:template>
<xsl:templatematch="L[@Type=1]">
<atarget="_blank">
<xsl:attributename="href"><xsl:value-ofselect="@Link"/></xsl:attribute>
<imgborder="0">
<xsl:attributename="width"><xsl:value-ofselect="@width"/></xsl:attribute>
<xsl:attributename="height"><xsl:value-ofselect="@height"/></xsl:attribute>
<xsl:attributename="src"><xsl:value-ofselect="$Path"/>Res/AD/<xsl:value-ofselect="@File"/></xsl:attribute>
</img>
</a>
</xsl:template>
<xsl:templatematch="L[@Type=2]">
<objectclassid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"codebase="http://download.macromedia.com/pub/shockwave/cabs/Flash/swflash.cab#version=6,0,29,0">
<xsl:attributename="width"><xsl:value-ofselect="@width"/></xsl:attribute>
<xsl:attributename="height"><xsl:value-ofselect="@height"/></xsl:attribute>
<paramname="movie"><xsl:attributename="value"><xsl:value-ofselect="$Path"/>Res/AD/<xsl:value-ofselect="@File"/></xsl:attribute></param>
<paramname="quality"value="high"/>
<embedquality="high"pluginspage="http://www.macromedia.com/go/getflashplayer"type="application/x-shockwave-flash">
<xsl:attributename="width"><xsl:value-ofselect="@width"/></xsl:attribute>
<xsl:attributename="height"><xsl:value-ofselect="@height"/></xsl:attribute>
<xsl:attributename="src"><xsl:value-ofselect="$Path"/>Res/AD/<xsl:value-ofselect="@File"/></xsl:attribute>
</embed>
</object>
</xsl:template>
</xsl:stylesheet>
xml文件
<?xmlversion="1.0"encoding="GB2312"?>
<DB>
<LName="测试1"height="100"width="100"Link="http://www.123.com"File="20056171345164340.gif"Key="200561713451653143405"Type="1"/>
</DB>
</p>由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。 |
|