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

  • :aspxer  Դ:internet  :2007-4-28 20:58:14  ؼ:c#,数据库,数据
  • <html>

    <head>

    <TITLE>分析数据库结构,自动生成代码</TITLE>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">

    </head>

    <frameset cols="237,767" rows="*">

    <frame src="http://www.knowsky.com/dbxml.aspx>"

    <frame name="code" src="about:blank">

    </frameset>

    </html>

    ########################### dbxml.aspx 文件内容,该文件没有C#代码文件 #############

    <script language="C#" runat ="server">

    System.Xml.XmlDocument myCfgXML = new System.Xml.XmlDocument();

    // 获得系统配置字符串

    string GetAppConfig(string strKey)

    {

    System.Xml.XmlElement cfgElement = myCfgXML.SelectSingleNode ("//setting[@key='" + strKey + "']" )

    as System.Xml.XmlElement ;

    if( cfgElement == null )

    return "";

    else

    return cfgElement.InnerText ;

    }

    // 判断字符串是否是空白字符串

    bool isBlankString(string strText )

    {

    if(strText != null)

    {

    int iCount;

    for(iCount=0;iCount<strText.Length ;iCount++)

    {

    if(System.Char.IsWhiteSpace ( strText[iCount])==false)

    return false;

    }

    }

    return true;

    }

    void Page_Load(Object sender, EventArgs e)

    {

    // 加载系统配置文件

    myCfgXML.Load(this.MapPath(".") + "\\dbxmlcfg.xml");

    string strType = this.Request["type"];

    string strXSL = "main.xml";

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