国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

ASP.NET動(dòng)態(tài)生成靜態(tài)頁(yè)面

2019-11-17 04:03:06
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友
asp.net動(dòng)態(tài)生成靜態(tài)頁(yè)面  

namespace BankAccount.test
{
/// <summary>
/// HtmlWriter 的摘要說(shuō)明。
/// </summary>

public class HtmlWriter : System.Web.UI.Page
{
  PRivate System.Data.SqlClient.SqlDataAdapter myAdapter;
  private System.Data.SqlClient.SqlConnection myConn;
  private System.Data.DataTable myDt;
  private string strConn = ConfigurationSettings.AppSettings["cns"];

  private void Page_Load(object sender, System.EventArgs e)
  {
   try
   {
    string Sqlstr = "Select Cmp_description from Company where Cmp_number = '123567'";
    string cription="";
    myDt = new DataTable();
    myConn = new SqlConnection(strConn);
    myConn.Open();
    myAdapter = new SqlDataAdapter(Sqlstr,myConn);
    myAdapter.Fill(myDt);
    if(myDt.Rows.Count>0)
    {
     cription = myDt.Rows[0]["Cmp_description"].ToString();
    }
    string title = "這是動(dòng)態(tài)生成的靜態(tài)頁(yè)面";
    string DHTML = "<!DOCTYPE HTML PUBLIC /"-//W3C//DTD HTML 4.0 Transitional//CN/"><html><head>"+
     "<meta http-equiv=/"Content-Type/" content=/"text/html; charset=gb2312/">"+
     "<title>"+ title +"</title></head><body topmargin=0>";
    dhtml += "<table width=760 valign=top border=1 cellspacing=1 cellpadding=0 align=center>"+
     "<tr><td height=5>"+ title  +"</td></tr><tr><td height=200 align=center>"+ cription +"</td></tr></table>"+
     "</body></html>";
    string Filename = DateTime.Now.ToString("yyyyMMddHHmmss")+".html";//動(dòng)態(tài)的文件名
    string Filepath = Server.MapPath(@"/BankAccount/test/");
    string Cname = DateTime.Now.Year.ToString() + DateTime.Now.Month.ToString();
    string Filecreatepath = Filepath + Cname + @"/";//頁(yè)面要保存的路徑

    //動(dòng)態(tài)生成的靜態(tài)頁(yè)面按年月保存本年本月的文件夾中
    if (Directory.Exists(Filecreatepath)) //判斷當(dāng)月的文件夾是否存在,
    {
     //調(diào)用創(chuàng)建html靜態(tài)頁(yè)面方法
     Create_html(Filecreatepath+Filename,dhtml);
    }
    else
    {
     //創(chuàng)建頁(yè)面保存到的文件夾
     DirectoryInfo di = Directory.CreateDirectory(Filecreatepath);
     Create_html(Filecreatepath+Filename,dhtml);
    }
   }
   catch(IOException ex)
   {
    throw ex;
   }
  }
  private void Create_html(string allfilename,string htmlcode)
  {
   FileStream CreateFile = new FileStream(allfilename,FileMode.CreateNew);
   StreamWriter sw = new StreamWriter(CreateFile);
   sw.WriteLine(htmlcode);//將拼好的Html代碼寫入頁(yè)面中
   sw.Close();
   Page.RegisterStartupScript("","<script>window.alert('The file created successfully.!')</script>");
  }

  #region Web 窗體設(shè)計(jì)器生成的代碼
  override protected void OnInit(EventArgs e)
  {
   //
   // CODEGEN: 該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
   //
   InitializeComponent();
   base.OnInit(e);
  }

  /// <summary>
  /// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
  /// 此方法的內(nèi)容。
  /// </summary>
  private void InitializeComponent()
  {   
   this.Load += new System.EventHandler(this.Page_Load);

  }
  #endregion
}
}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 寿宁县| 清水河县| 顺平县| 门头沟区| 彝良县| 嘉义县| 金华市| 海南省| 富源县| 登封市| 惠水县| 玉屏| 四子王旗| 赤城县| 绥江县| 石台县| 芜湖市| 平谷区| 博乐市| 海丰县| 饶阳县| 淮滨县| 霍城县| 安丘市| 大丰市| 广南县| 衡水市| 冕宁县| 福州市| 砚山县| 鄱阳县| 杂多县| 苏尼特左旗| 虹口区| 霍州市| 正镶白旗| 开封县| 桂阳县| 邢台市| 金华市| 锡林浩特市|