关于生成html静态页面的问题

时间:2022-02-14 08:18:03
最近要做一个新闻发布系统,请问怎么做在提交新闻时,在数据库保存的同时生成静态的html页面,具体生成html页面怎么实现,谢谢各位!!!

谁有这方面的代码,给参考学习,brssye@163.com 再次谢谢;

9 个解决方案

#1


一般要做一套新闻显示页面的模板,新闻标题,内容等用美元号之类的标识(如:$News_Title$),当生成静态页时交显示的新闻内容和美元号替换.然后将最后替换完成的字符串(整个页面的HTML)生成html文件放到指定的目录下面,在数据库中只要保存新闻的内容就行了,

#2


using System.IO;


StreamWriter sw = new StreamWriter( "存放HTML文件的路径\文件名.html" ),
false,Encoding.GetEncoding("GB2312"));
sw.Write( "HTML字符串" );
sw.Flush();
sw.Close();

#3


在网上找到了一种方法:

public static bool WriteFile(string strText,string Biaoti,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$",Biaoti);
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;
}

private void Button1_Click(object sender, System.EventArgs e)
{
string a,b,c,d;
a = "这是一个title";
b = "这是一个标题";
c = "这里是内容";
d = "这是作者";
if (WriteFile(a,b,c,d))
{
Response.Write("添加成功");
}
else
{
Response.Write("生成HTML出错!");
}
}



Text.htm 模板文件
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
 <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  <title>$ShowArticle$</title>
  
 <body>

 标题:$biaoti$
 <br>
 内容开始<br><br>
 $content$<br>
 
 <br><br>作者:$author$
 
 <br>结束
 </body>
</HTML>

#4


经调试,上面的新建OK,不知修改怎么做到复盖以前的文件,是不是保存到数据库时保存文件名进去;

#5


有没有人给点答案啊

#6


修改就要先删除久的,在写新的不久ok了。。呵呵。。

#7


see:
http://www.aspxboy.com/code/default.aspx/S7s2zPJbeI9PJA/OKHpAVwVaUEhf02EgEOgeB3Yd5Z7fLL3ZNgdv7XIqertUOYm9Lt2z7P2vt/2C0IoCxyIplmfUKQlJPOld5WYXFIEUm4/olLp15IyR0cU6WECslwJ8.Aspx

#8


收藏  http://www.aspxboy.com/code/default.aspx/S7s2zPJbeI9PJA/OKHpAVwVaUEhf02EgEOgeB3Yd5Z7fLL3ZNgdv7XIqertUOYm9Lt2z7P2vt/2C0IoCxyIplmfUKQlJPOld5WYXFIEUm4/olLp15IyR0cU6WECslwJ8.Aspx

#9


ding

#1


一般要做一套新闻显示页面的模板,新闻标题,内容等用美元号之类的标识(如:$News_Title$),当生成静态页时交显示的新闻内容和美元号替换.然后将最后替换完成的字符串(整个页面的HTML)生成html文件放到指定的目录下面,在数据库中只要保存新闻的内容就行了,

#2


using System.IO;


StreamWriter sw = new StreamWriter( "存放HTML文件的路径\文件名.html" ),
false,Encoding.GetEncoding("GB2312"));
sw.Write( "HTML字符串" );
sw.Flush();
sw.Close();

#3


在网上找到了一种方法:

public static bool WriteFile(string strText,string Biaoti,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$",Biaoti);
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;
}

private void Button1_Click(object sender, System.EventArgs e)
{
string a,b,c,d;
a = "这是一个title";
b = "这是一个标题";
c = "这里是内容";
d = "这是作者";
if (WriteFile(a,b,c,d))
{
Response.Write("添加成功");
}
else
{
Response.Write("生成HTML出错!");
}
}



Text.htm 模板文件
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
 <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  <title>$ShowArticle$</title>
  
 <body>

 标题:$biaoti$
 <br>
 内容开始<br><br>
 $content$<br>
 
 <br><br>作者:$author$
 
 <br>结束
 </body>
</HTML>

#4


经调试,上面的新建OK,不知修改怎么做到复盖以前的文件,是不是保存到数据库时保存文件名进去;

#5


有没有人给点答案啊

#6


修改就要先删除久的,在写新的不久ok了。。呵呵。。

#7


see:
http://www.aspxboy.com/code/default.aspx/S7s2zPJbeI9PJA/OKHpAVwVaUEhf02EgEOgeB3Yd5Z7fLL3ZNgdv7XIqertUOYm9Lt2z7P2vt/2C0IoCxyIplmfUKQlJPOld5WYXFIEUm4/olLp15IyR0cU6WECslwJ8.Aspx

#8


收藏  http://www.aspxboy.com/code/default.aspx/S7s2zPJbeI9PJA/OKHpAVwVaUEhf02EgEOgeB3Yd5Z7fLL3ZNgdv7XIqertUOYm9Lt2z7P2vt/2C0IoCxyIplmfUKQlJPOld5WYXFIEUm4/olLp15IyR0cU6WECslwJ8.Aspx

#9


ding