<?xml version="1.0" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <หัว>< <TITLE>การแปลง XSLT อย่างง่าย</TITLE> </หัว>< <ร่างกาย> <H2>การแปลง XSLT อย่างง่าย</H2> <เส้นขอบของตาราง="1" cellSpacing="1" cellPadding="1"> <ศูนย์กลาง> <xsl:for-each select="//Categories"> <xsl:value-of select="ProductSubcategoryID" /> <xsl:attribute name="align">center</xsl:attribute"> <xsl:value-of select="ModifiedDate" /> </ศูนย์> </โต๊ะ>< </ร่างกาย>< </HTML>< </xsl:แม่แบบ>< </xsl:สไตล์ชีท>< |
<%@ ภาษาของหน้า = "C#" %> <%@ นำเข้าเนมสเปซ = "System.Data.SqlClient" % > <%@ นำเข้าเนมสเปซ = "System.Xml" % > <%@ นำเข้าเนมสเปซ = "System.Xml.Xsl" % > <%@ นำเข้าเนมสเปซ = "System.Xml.XPath" % > <%@ นำเข้าเนมสเปซ = "System.Web.Configuration" % > <สคริปต์ runat="เซิร์ฟเวอร์"> เป็นโมฆะ Page_Load (ผู้ส่งวัตถุ System.EventArgs e) - สตริง connString = WebConfigurationManager.ConnectionStrings ["adventureWorks"].ConnectionString; ใช้ (การเชื่อมต่อ SqlConnection = SqlConnection ใหม่ (connString)) - การเชื่อมต่อเปิด (); คำสั่ง SqlCommand = SqlCommand ใหม่ ("เลือก * จาก Production.ProductSubcategory เป็น Category " + " สำหรับ xml auto,องค์ประกอบ", การเชื่อมต่อ); เครื่องอ่าน XmlReader = command.ExecuteXmlReader(); XPathDocument xpathDoc = XPathDocument ใหม่ (ผู้อ่าน); สตริง xslPath = Server.MapPath("Category.xsl"); การแปลง XslCompiledTransform = XslCompiledTransform ใหม่ (); แปลงโหลด(xslPath); แปลง.แปลง(xpathDoc, null, Response.Output); - - </สคริปต์>< |
<?xml version="1.0" ?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:param name="BackGroundColor" select="Blue" /> <หัว>< </หัว>< <ร่างกาย> <H2> การส่งผ่านพารามิเตอร์ไปยังสไตล์ชีต XSLT</H2>< <เส้นขอบของตาราง="1" cellSpacing="1" cellPadding="1"> <ศูนย์กลาง> <xsl:for-each select="//Categories"> <xsl:value-of select="$BackGroundColor" /> <xsl:value-of select="ProductSubcategoryID" /> <xsl:attribute name="align">center</xsl:attribute"> <xsl:value-of select="ModifiedDate" /> </ศูนย์> </โต๊ะ>< </ร่างกาย>< </HTML>< </xsl:แม่แบบ>< </xsl:สไตล์ชีท>< |
<xsl:value-of select="$BackGroundColor" /> |