1
是否有人有XSLT將採取app.config並將其渲染爲非技術人員可口的格式?通過XSLT渲染App.config/Web.config文件
目的是主要信息,但與驗證XML的不錯的副作用(如果它已經變爲無效,也不會渲染)
是否有人有XSLT將採取app.config並將其渲染爲非技術人員可口的格式?通過XSLT渲染App.config/Web.config文件
目的是主要信息,但與驗證XML的不錯的副作用(如果它已經變爲無效,也不會渲染)
首先草案中的溶液,以顯示
捶這在App.config:
<?xml-stylesheet type="text/xsl" href="display-config.xslt"?>
這是內容display-config.xslt:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>Settings</h2>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="connectionStrings">
<h3>Connection Strings</h3>
<table border="1">
<tr bgcolor="#abcdef">
<th align="left">Name</th>
<th align="left">Connection String</th>
</tr>
<xsl:for-each select="add">
<tr>
<td><xsl:value-of select="@name"/></td>
<td><xsl:value-of select="@connectionString"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
<xsl:template match="appSettings">
<h3>Settings</h3>
<table border="1">
<tr bgcolor="#abcdef">
<th align="left">Key</th>
<th align="left">Value</th>
</tr>
<xsl:for-each select="add">
<tr>
<td><xsl:value-of select="@key"/></td>
<td><xsl:value-of select="@value"/></td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>
什麼類型的轉換你找誰?僅供參考?你想要改變什麼樣的細節水平?