• λ我爱Aspx >> C#.Net >> C#分析数据库结构,使用XSL模板自动生成代码_C#应用
  • C#分析数据库结构,使用XSL模板自动生成代码_C#应用

  • :aspxer  Դ:internet  :2007-4-28 20:58:14  ؼ:c#,数据库,数据
  • <xsl:value-of select="@key" />

    </xsl:attribute>

    <xsl:value-of select="@key" />

    </option>

    </xsl:for-each>

    </select>

    <input type="submit" value="提交" />

    <table>

    <tr class="tablehead">

    <td nowrap="1">选择</td>

    <td nowrap="1">表名</td>

    <td nowrap="1">字段个数</td>

    </tr>

    <xsl:for-each select="table">

    <tr>

    <td nowrap="1">

    <input type="checkbox" name="tablelist" style="width:13;height:13">

    <xsl:attribute name="value">

    <xsl:value-of select="@name" />

    </xsl:attribute>

    </input>

    </td>

    <td>

    <xsl:value-of select="@name" />

    </td>

    <td>

    <xsl:value-of select="@count" />

    </td>

    </tr>

    </xsl:for-each>

    </table>

    </form>

    </body>

    </html>

    </xsl:template>

    </xsl:stylesheet>

    ############################### temp_CSharp.xml 内容 ############################################

    <?xml version="1.0" encoding="utf-8" ?>

    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:output method="xml" indent="yes" />

    <xsl:template match="/">

    Ҷƪл˵?
  • һƪ关于正则表达式匹配无异常资源耗尽的解决方案_C#应用
    һƪ在c#中执行sql语句时传递参数的小经验_C#教程