首页 > 编程 > .NET > 正文

ASP.NET生成静态HTML页面并分别按年月目录存放

2024-07-10 13:04:36
字体:
来源:转载
供稿:网友
注册会员,创建你的web开发资料库,

一说到新闻系统的话,一定会谈到静态页面生成的,因为静态页面不但是读取速度快,而且又安全;
静态页面的生成不管是小到现在的企业网站大至网易,qq等门户都用到了;
那么我们如何来生成静态页呢?
以什么方式生成静态页面呢……

在生成静态页面的时候有那些是要注意的呢:

静态页面命名
统一存放目录
静态页面模板
页面生成

一般来说,在原来新闻系统的基础上我们可以根据get此页面请求的内容再生成(比如:http;//www.test.com/news.aspx?id=1,get此页面代码直接写至一个文本文件并以html命名即可);

在这里我所采用的是模板生成,先用dw做一个网页模板,将标题,内容等将要动态实现的内容先以$title$等替换,等在生成的时候替换成新闻的内容;

命名:在生成的时候一般来说是采用新闻发布的时间转换成的字符串,这个是不会重复的
另外我还按年份月份把这些静态文件存放在不同的目录,以便于管理,
在这里根据一个新闻的id调用方法writenews()给定参数id,它就会根据此id从数据库中读取内容,再根据静态模板页面html/test.html生成新的静态页面存放在相应年份月份的目录

好了,下面是代码:

using system;
using system.io;
using system.web;
using system.text;
namespace powerleader.components
...{
    /**//// <summary>
    /// writetohtml 的摘要说明。
    /// </summary>
    public class writetohtml
    ...{
        public writetohtml()
        ...{
            //
            // todo: 在此处添加构造函数逻辑
            //
        }

        public static void writenews(int id)
        ...{
            news news = new news();           
            news.newsdetails newsdetails = new powerleader.components.news.newsdetails();
            newsdetails = news.getnews(id);
            bool flag;
            flag = writefile(newsdetails);
        }

        public static bool writefile(news.newsdetails newsdetails)
        ...{
            directory.createdirectory(httpcontext.current.server.mappath("/powerleader/html/"+newsdetails.addtime.tostring("yyyy")+"/"+newsdetails.addtime.tostring("mm")));
            string path = httpcontext.current.server.mappath("../html/"+newsdetails.addtime.tostring("yyyy")+"/"+newsdetails.addtime.tostring("mm")+"/");
            encoding code = encoding.getencoding("gb2312");
            // 读取模板文件
            string temp = httpcontext.current.server.mappath("../html/text.html");
            streamreader sr = null;
            streamwriter sw = null;
            string stringtempcode = ""; 
            try
            ...{
                sr = new streamreader(temp, code);
                stringtempcode = sr.readtoend(); // 读取文件
            }
            catch(exception exp)
            ...{
                httpcontext.current.response.write(exp.message);
                httpcontext.current.response.end();
                sr.close();
            }  
            string htmlfilename = newsdetails.addtime.tostring("yyyymmddhhmmss") + ".html";
            // 替换内容
            // 这时,模板文件已经读入到名称为str的变量中了
            stringtempcode = stringtempcode.replace("$pagetitle$","抗战online官方网站...");
            stringtempcode = stringtempcode.replace("$type$",newsdetails.type.tostring().trim());
            stringtempcode = stringtempcode.replace("$author$",newsdetails.author.tostring().trim());
            stringtempcode = stringtempcode.replace("$from$",newsdetails.from.trim());
            stringtempcode = stringtempcode.replace("$time$",newsdetails.addtime.tostring().trim());
            stringtempcode = stringtempcode.replace("$title$",newsdetails.title.trim());
            stringtempcode = stringtempcode.replace("$content$",newsdetails.content);
            // 写文件
            try
            ...{
                sw = new streamwriter(path + htmlfilename , false, code);
                sw.write(stringtempcode);
                sw.flush();
            }
            catch(exception ex)
            ...{
                httpcontext.current.response.write(ex.message);
                httpcontext.current.response.end();
            }
            finally
            ...{
                sw.close();
            }
            return true;
        }
    }
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表