ASP
環境:Microsoft
OS:Windows Server
ASP
在Asp中實現的生成靜態頁用到的FileSystemObject對象!
在
以下是程序代碼 注:此代碼非原創!參考別人代碼
//生成HTML頁
public static bool WriteFile(string strText
{
string path = HttpContext
Encoding code = Encoding
// 讀取模板文件
string temp = HttpContext
StreamReader sr=null;
StreamWriter sw=null;
string str=
try
{
sr = new StreamReader(temp
str = sr
}
catch(Exception exp)
{
HttpContext
HttpContext
sr
}
string htmlfilename=DateTime
// 替換內容
// 這時
str =str
str = str
str = str
str = str
// 寫文件
try
{
sw = new StreamWriter(path + htmlfilename
sw
sw
}
catch(Exception ex)
{
HttpContext
HttpContext
}
finally
{
sw
}
return true;
此函數放在Conn
在添加新聞的代碼中引用 注
if(Hover
{
Response
}
else
{
Response
}
模板頁l代碼
<!DOCTYPE HTML PUBLIC
<HTML>
<HEAD>
<title>ShowArticle</title>
<body>
biaoti
<br>
content<br>
author
</body>
</HTML>
biaoti
<br>
content<br>
author
</body>
</HTML>
提示添加成功後會出以當前時間為文件名的html文件!上面只是把傳遞過來的幾個參數直接寫入了HTML文件中
完
From:http://tw.wingwit.com/Article/program/net/201311/12573.html