CmsEasy_可视化编辑网站系统_适合企业网站建设_网站制作_快速建站
网站内有近二百套免费模版,样式精美,可根据不同的企业行业进行筛选,找到最适合公司的一套模版,带有cmseasy网站程序后台,可在后台对网站前端内容进行修改更新,帮助打造更精美的企业官网。
1、ASP文件中的代码
pencat=rs.Fields.Item("m_content").Value
pencat=replace(pencat,"t_title",n_title)
pencat=replace(pencat,"t_author",n_author)
pencat=replace(pencat,"t_content",n_content)
Set fso= Server.CreateObject("Scripting.FileSystemObject")
Set fout= fso.CreateTextFile(server.mappath(fpath&"\"& fname))
fout.WriteLine pencat
fout.close
2、如下给出要生成的网页模板:
<html>
<head>
<meta http-equiv=""Content-Language"" content=""zh-cn"">
<meta http-equiv=""Content-Type"" content=""text/html; charset=gb2312"">
<meta name=""GENERATOR"" content=""Microsoft FrontPage 4.0"">
<meta name=""ProgId"" content=""FrontPage.Editor.Document"">
<title></title>
</head>
<body topmargin=""0"" leftmargin=""0"">
<table border=""0"" width=""760"" height=""100%"" background=""background.jpg"">
<tr>
<td width=""752"" height=""10"" colspan=""3"">
<p align=""center"">t_title
</td>
</tr>
<tr>
<td width=""752"" height=""18"" colspan=""3"">
<div align=""center"">
</div>
<div align=""center"">
<font size=""2"">
作者:</font><font color=""#990000"">t_author</font>
<font size=""2"">
加入时间:</font><font color=""#990000"">t_date</font>
</div>
</td>
</tr>
<tr>
<td width=""15%"" height=""100%"" valign=""top"">
</td>
<td width=""70%"" height=""100%"" valign=""top"">
t_content
</td>
<td width=""15%"" height=""100%"" valign=""top"">
</td>
</tr>
</table>
</body>
</html>
3、解释
(1)pencat=rs.Fields.Item("m_content").Value
pencat为一个字符串变量。
rs.Fields.Item("m_content").Value就是如上2、网页模板的全部HTML字符
(2)pencat=replace(pencat,"t_title",n_title)
pencat=replace(pencat,"t_author",n_author)
pencat=replace(pencat,"t_content",n_content)
以上三句就是将字符串中的字串替换成为你所需要的内容,即ASP中动态获得的内容。
(3)Set fso= Server.CreateObject("Scripting.FileSystemObject")
Set fout= fso.CreateTextFile(server.mappath(fpath&"\"& fname))
fout.WriteLine pencat
fout.close
以上为将刚刚组合所得的网页代码写入文件的过程。第一句定义fso文件,第二句创建输出流文件,其中fpath为你想要存储的文件的路径,fname为文件名;后两句是将字符串写入文件和关闭输出流文件。
个人网页一般为博客模式,即以前比较流行的新浪博客、网易博客等博客模式。不过由于这些博客仅仅支持有限的HTML代码添加,对于JS以及CSS代码基本不支持,故而对于有个性化需求人群来说,还是有些过于“古板”。
个人搭建网页比较主流的程序有wordpress、dedeCMS、帝国CMS等,其中Wordpress属于最为主流的个人博客类网站管理系统,dedeCMS侧重网站优化,以前民营医疗SEO采用该系统最多。你百度一下wordpress模板就有很多免费的博客模板可供选择。
转载请注明:片头模版 » html网站模板(有哪些html模板的网站是免费的)