一個不是很好的方法:遍尋所有紀錄,每讀一條替換模板生成相應的html文件<%Set Rs=Server.CreateObject("adodb.recordset")Rs.open("Select * from [news]"),Conn,1,1Dim ModeContent,FSO,MyFso,MyHtmlSet Fso=Server.Createobject("Scripting.FileSystemObject")MyFso=Fso.openTextFile(Server.Mappath("模板"),1)ModelContent=MyFso.readAllDo while Not(Rs.eof or Rs.bof)ModelContent=Replace(ModelContent,"$title$","&Rs("Title")&")ModelContent=Replace(ModelContent,"$Content$","&Rs("Content")&")MyHtml=Fso.CreateTextFile(Server.mapPath(""&Rs("id")&".html"), True)MyHtml.writeLine(ModelContent)Conn.execute("Update [News] Set HtmlUrl=""&Rs("id")&".html" where id="&Rs("id")&"") Rs.movenextLoopSet fso=nothingSet Rs=nothing%>設置為靜態的, 得先看看你的網址是否支持靜態化。 你用的什么cms?