当前位置: 网学 > 编程文档 > ASP > 正文

asp中静态页面实现方法

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/16
t" name="submit" value="生成html">
  </form>

2、但是按照上面的方法生成html文件非常不方便,第二种方法就是利用模板技术,将模板中特殊代码的值替换为从表单或是数据库字段中接受过来的值,完成模板功能;将最终替换过的所有模板代码生成html文件.这种技术采用得比较多,大部分的cms都是使用这类方法.
  template.htm '' //模板文件
复制代码 代码如下:
  <html>
  <head>
  <title>$title$ by aspid.cn</title>
  </head>
  <body>
  $body$
  </body>
  </html>testtemplate.asp ''// 生成html
  <%
  dim fso,htmlwrite
  dim strtitle,strcontent,strout
  ''// 创建文件系统对象
  set fso=server.createobject("scripting.filesystemobject")
  ''// 打开网页模板文件,读取模板内容
  set htmlwrite=fso.opentextfile(server.mappath("template.htm"))
  strout=f.readall
  htmlwrite.close
  strtitle="生成的网页标题"
  strcontent="生成的网页内容"
  ''// 用真实内容替换模板中的标记
  strout=replace(strout,"$title$",strtitle)
  strout=replace(strout,"$body$",strcontent)
  ''// 创建要生成的静态页
  set htmlwrite=fso.createtextfile(server.mappath("test.htm"),true)
  ''// 写入网页内容
  htmlwrite.writeline strout
  htmlwrite.close
  response.write "生成静态页成功!"
  ''// 释放文件系统对象
  set htmlwrite=nothing
  set fso=nothing
  %>

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号