如何在Asp.Net项目中实现生成静态页面

发布时间:2021-02-17 10:35:01 作者:Leah
来源:亿速云 阅读:139

如何在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)
        {

        }
        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]</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"  mce_>
                 <tr>
                    <td width="100%" valign="middle" align="left">
                        <span  mce_>$htmlkey[4]</span>
                    </td>
                 </tr>
              </table>
       </body>
</html>

看完上述内容,你们掌握如何在Asp.Net项目中实现生成静态页面的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注亿速云行业资讯频道,感谢各位的阅读!

推荐阅读:
  1. Asp.net 生成静态页面
  2. 如何在python3.6项目中使用yield生成器

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

asp.net

上一篇:如何在laravel框架中全局调用封装公共方法

下一篇:利用TP5框架怎么对数据库进行备份

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》