您的位置首页百科问答

HTML模版来自

HTML模版来自

的有关信息介绍如下:

问题补充说明:急需一个HTML模版,不要发网站.要现成的,谢谢

HTML模版来自

1、ASP文件中的代码

pencat=rs种六拿求犯操友电额聚.***.item("m_content").如条蛋翻商丰坐杀重源Value

pencat=replace(pencat,"t_title",n_title)

pencat=replace(pencat,"t_author",n_author)

penca指础煤国字批之哪选随站t=replace(pencat,"t_content",n_content)

Setfso=***.createobje刑上铁川目绍七地黑破ct("***.f十黑由受叫婷五ilesystemobject")

Setfout=*360问答**.createtextfile(***.mappath(fpath&"\"&fname))

***.writelinepencat

***免剂项.close

2、如下给出要生成的网页模板:

<html>

<head>

<metahttp-equiv=""Content-Language""content=""zh-cn"">

<metahttp-equiv=""Content-Type""content=""text/html;charset=gb2312"">

<metaname=""GENERATOR""content=""MicrosoftFrontPa茶条省喜ge4.0"">

<metaname=""ProgId""content=""frontpage.***.document"">

<title></title>

</head>

<bodyt药opmargin=""0""leftmargin=""0"">

<table0""760""1错天集令影练00%""back究金需ground=""background.jpg"">

<tr>

<td752""h局度端欢除判势否层构eight=""10""colspan=""3"">

<pcenter"">t_title

</td>

</tr>

<tr>

<td752""18""colspan=""3"">

<divcenter"">

</div>

<divcenter"">

<fontsize=""2"">

作者:</font><fontcolor=""#990000"">t_author</font>

<fontsize=""2"">

加入时间:</font><fontcolor=""#990000"">t_date</font>

</div>

</td>

</tr>

<tr>

<t这强而论采大散d15%""100%""vtop"">

</td>

<td70%""100%""vtop"">

t_content

</td>

<td15%""h哪新衡执宁预孩负eight=""100%""v生飞top"">

</td>

</tr>

</table>

</必拉皇杨岁阿body>

</html>

3、解释

(1)pencat=rs.***.item("m_content").Value

pencat为一个字符串变量。

rs.***.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)Setfso=***.createobject("***.filesystemobject")

Setfout=***.createtextfile(***.mappath(fpath&"\"&fname))

***.writelinepencat

***.close

以上为将刚刚组合所得的网页代码写入文件的过程。第一句定义fso文件,第二句创建输出流文件,其中fpath为你想要存储的文件的路径,fname为文件名;后两句是将字符串写入文件和关闭输出流文件。