Asp.Net生成静态页面的实现方法

这篇文章介绍了Asp.Net生成静态页面的实现方法,有需要的朋友可以参考一下
代码:
using System; 
using System.Data; 
using System.Configuration; 
using System.Collections; 
using System.Web; 
using System.Web.Security; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Web.UI.WebControls.WebParts; 
using System.Web.UI.HtmlControls; 
using Mysqlserver;//数据库操作类 
using System.IO; 
using System.Text; 
namespace NewsAdd 
{ 
    public partial class Admin_AdminPanel_NewsAdd : System.Web.UI.Page 
    { 
        protected void Page_Load(object sender, EventArgs e) 
        { // www.jbxue.com
        } 
        protected void Button1_Click(object sender, EventArgs e) 
        { 
            string strTitle=Request.Form["Title"].ToString(); 
            string strContent=Request.Form["Content"].ToString(); 
            SqlServerDataBase db = new SqlServerDataBase(); 
            bool success = db.Insert("insert into inNews(Title,Content)values('" + strTitle + "','" + strContent + "')", null); 
            //if (success) 
               // Message.Text = "添加成功!"; 
            /**创建当前日期的文件夹开始 
            string dir = Server.MapPath("../../"+"NewsFiles/"+DateTime.Now.ToString("yyMMdd")); 
            if (!Directory.Exists(dir)) 
            { 
                Directory.CreateDirectory(dir); 
            } 
            /**创建当前日期的文件夹结束 


            string[] newContent = new string[5];//定义和html标记数目一致的数组 
            StringBuilder strhtml = new StringBuilder(); 
            try 
            { 
                //创建StreamReader对象 
                using (StreamReader sr = new StreamReader(Server.MapPath("../../" + "NewsFiles/") + "/template.html")) 
                { 
                    String oneline; 
                    //读取指定的HTML文件模板 
                    while ((oneline = sr.ReadLine()) != null) 
                    { 
                        strhtml.Append(oneline); 
                    } 
                    sr.Close(); 
                } 
            } 
            catch (Exception err) 
            { 
                //输出异常信息 
                Response.Write(err.ToString()); 
            } 
            //为标记数组赋值 
            newContent[0] = strTitle;//标题 
            newContent[1] = "BackColor='#cccfff'";//背景色 
            newContent[2] = "#ff0000";//字体颜色 
            newContent[3] = "100px";//字体大小 
            newContent[4] = strContent;//主要内容 


            //根据上面新的内容生成html文件 
            try 
            { 
                //指定要生成的HTML文件 
                string fname = Server.MapPath("../../" + "NewsFiles/" + DateTime.Now.ToString("yyMMdd")) + "/" + DateTime.Now.ToString("yyyymmddhhmmss") + ".html"; 
                //替换html模版文件里的标记为新的内容 
                for (int i = 0; i < 5; i++) 
                { 
                    strhtml.Replace("$htmlkey[" + i + "]", newContent[i]); 
                } 
                //创建文件信息对象 
                FileInfo finfo = new FileInfo(fname); 
                //以打开或者写入的形式创建文件流 
                using (FileStream fs = finfo.OpenWrite()) 
                { 
                    //根据上面创建的文件流创建写数据流 
                    StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.GetEncoding("GB2312")); 
                    //把新的内容写到创建的HTML页面中 
                    sw.WriteLine(strhtml); 
                    sw.Flush(); 
                    sw.Close(); 
                } 
            } 
            catch (Exception err) 
            { 
                Response.Write(err.ToString()); 
            } 
        } 
} 
} 

template.html 代码
<html> 
       <head> 
              <title>$htmlkey[0] - www.jbxue.com</title> 
              <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
       </head> 
       <body > 
              <table $htmlkey[1] height="100%" border="0" width="100%" cellpadding="10" cellspacing="0"  bgcolor="#eeeeee" style="border:1px solid #000000" mce_style="border:1px solid #000000"> 
                 <tr> 
                    <td width="100%" valign="middle" align="left"> 
                        <span style="color: $htmlkey[2];font-size: $htmlkey[3]" mce_style="color: $htmlkey[2];font-size: $htmlkey[3]">$htmlkey[4]</span> 
                    </td> 
                 </tr> 
              </table> 
       </body> 
</html> 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
…… 2.asp.net代码:   //---------------------读html模板页面到stringbuilder对象里----   string[] format=new string[4];//定义和htmlyem标记数目一致的数组   StringBuilder htmltext=new StringBuilder();   try   {    using (StreamReader sr = new StreamReader("存放模板页面的路径和页面名"))    {   String line;   while ((line = sr.ReadLine()) != null)   {    htmltext.Append(line);   }   sr.Close();    }   }   catch   {    Response.Write("<Script>alert('读取文件错误')</Script>");   }   //---------------------给标记数组赋值------------   format[0]="background="bg.jpg"";//背景图片   format[1]= "#990099";//字体颜色   format[2]="150px";//字体大小   format[3]= "<marquee>生成的模板html页面</marquee>";//文字说明   //----------替换htm里的标记为你想加的内容   for(int i=0;i<4;i )   {    htmltext.Replace("$htmlformat[" i "]",format[i]);   }   //----------生成htm文件------------------――   try   {    using(StreamWriter sw=new StreamWriter("存放路径和页面名",false,System.Text.Encoding.GetEncoding("GB2312")))   {    sw.WriteLine(htmltext);    sw.Flush();    sw.Close();   }   }   catch   {   Response.Write ("The file could not be wirte:");   }   小结   用此方法可以方便的生成html文件。程序使用了是循环替换,因此对需替换大量元素的模板速度非常快。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值