首页 > 编程 > .NET > 正文

ASP.Net生成静态HTML页!

2024-07-10 13:04:37
字体:
来源:转载
供稿:网友

环境:microsoft .net framework sdk v1.1
os:windows server 2003 中文版
asp.net生成静态html页
在asp中实现的生成静态页用到的filesystemobject对象!
在.net中涉及此类操作的是system.io
以下是程序代码 注:此代码非原创!参考别人代码
//生成html页
public static bool writefile(string strtext,string strcontent,string strauthor)
{
string path = httpcontext.current.server.mappath("/news/");
encoding code = encoding.getencoding("gb2312");
// 读取模板文件
string temp = httpcontext.current.server.mappath("/news/text.html");
streamreader sr=null;
streamwriter sw=null;
string str="";
try
{
sr = new streamreader(temp, code);
str = sr.readtoend(); // 读取文件
}
catch(exception exp)
{
httpcontext.current.response.write(exp.message);
httpcontext.current.response.end();
sr.close();
}


string htmlfilename=datetime.now.tostring("yyyymmddhhmmss")+".html";
// 替换内容
// 这时,模板文件已经读入到名称为str的变量中了
str =str.replace("showarticle",strtext); //模板页中的showarticle
str = str.replace("biaoti",strtext);
str = str.replace("content",strcontent);
str = str.replace("author",strauthor);
// 写文件
try
{
sw = new streamwriter(path + htmlfilename , false, code);
sw.write(str);
sw.flush();
}
catch(exception ex)
{
httpcontext.current.response.write(ex.message);
httpcontext.current.response.end();
}
finally
{
sw.close();
}
return true;

此函数放在conn.cs基类中了
在添加新闻的代码中引用 注:工程名为hover

if(hover.conn.writefilethis.title.text.tostring),this.content.text.tostring),this.author.text.tostring)))
{
response.write("添加成功");
}
else
{
response.write("生成html出错!");
}
-------------------------------------------------------------------------
模板页text.html代码
-------------------------------------------------------------------------





biaoti


content

author

------------------------------------------------------------------------
提示添加成功后会出以当前时间为文件名的html文件!上面只是把传递过来的几个参数直接写入了html文件中,在实际应用中需要先添加数据库,然后再写入html文件
而且需要把生成的文件名等写入数库以便以后调用等,此实例只是实现了根据提交过来参数替换模板中的相应的字段! 需要完善的地方很多!哪位有高见,欢迎赐教!


posted on 2004-03-23 15:39 观自在书院 阅读(2111) 评论(5) 编辑 收藏 收藏至365key 所属分类: dotnet

feedback
# re: asp.net生成静态html页! 2004-05-17 09:37 kriss
用html作为模板,替换其中变量只能实现一些简单页面
有没有办法把我的aspx文件的运行结果产生html呢?
譬如我的首页,内容很复杂,用aspx写的
但由于用户很多,为了提高速度,我每次更新数据后,重新产生首页的html,但模板是aspx文件 回复


# re: asp.net生成静态html页! 2004-05-18 18:03 槛上人
这个效果用缓存可以实现的,比如你将页面整体缓存3分种,和静态页面差不多了 回复


# re: asp.net生成静态html页! 2004-06-01 13:36 kriss
我找到我想用的方法了:
using system.web.hosting;

webhost host = (webhost)applicationhost.createapplicationhost(
typeof(webhost), name, path);

public void dorequest(string page, string query, textwriter writer) {
httpruntime.processrequest(new simpleworkerrequest(page, query, writer));
}

这样我就可以直接把一个aspx文件产生html文件了
filestream fs = file.open("default.htm");
host.dorequest("default.aspx",string.empty,fs); 回复

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