ASP生成静态页面的方法

ASP生成静态页面的方法


ASP2HTML WITH TEMPLET

我希望大家看到该标题就能让想象到它的功能:

1,WITH TEMPLET意思是,生成的页面架构将采用某个已设定的模板,在此之前我的一篇教程中介绍过,希望各位在看本教程之前对ASP采用模板应熟悉下。(当然,不看也没有问题,本教程同样会提及精华部分的:)具体参考:http://www.cnbruce.com/blog/showlog.asp?cat_id=26&log_id=474

2,ASP2HTML。不要我再说ASP转变成HTML的好处了吧,呵呵,其中最值得知道的就是:静态HTML页和动态页对 服务器 的要求承受能力小得多,同样,静态HTML搜索几率远比动态页面的多得多。

那么,我现在需要处理的技术问题就是:
1,如何实现模板技术?(先参看下上篇文章吧)
2,如何实现2HTML技术?
3,如何让模板技术与2HTML技术结合?

一、先进行技术原理分析

1,模板技术参看 www.cnbruce.com/blog/showlog.asp?cat_id=26&log_id=474

2,2HTML技术又该如何实现呢?如何使得ASP页面转变为HTML?一般都会想到FSO组件,因为该组件能新建任何文件格式。

那么其整个运行过程是怎么样的呢?
a,提供信息输入页面进行信息收集;
b,接受信息值先保存数据库,再FSO生成文件;
c,技术性完成任务,显示刚被创建的HTML文件的路径地址。

该技术的实现过程中有如下几个难点:

i,FSO生成的文件是直接放在一个大文件夹下,还是单独放在某个每日更新的子文件夹中?可能表述不准确,这样理解吧:相信通过FSO生成的文件随着时间的推移,文件会越来越多,管理也会越来越乱……通常你可能看到一些地址诸如 www.xxx.com/a/2004-5-20/200405201111.html 可以分析得出应该是建立了当前日期的文件夹。这样,一天就是一个文件夹的页面内容,查看管理也就显得比较合理。

ii,我在试图通过以上方法建立文件夹的时候,又发现了第二个问题。第一次通过FSO建立以当前日期命名的文件夹,没有问题。当我有新的文件需要生成时,因为是同一个程序,所以,其又将会执行建立同样的文件夹。此时,FSO组件会发现该路径已存在……卡壳-_-! 继续处理,在首行添加代码:

> 引用: > > * * * > >
> On Error Resume Next
>
> > > * * *

嘿嘿,达到自欺欺人、掩耳盗铃的效果。

当然规矩的用法是判断文件夹的有无

> 引用: > > * * * > >
> ```

Set fso = Server.CreateObject("Scripting.FileSystemObject")
if (fso.FolderExists(Server.MapPath(folder))) then
'判断如果存在就不做处理
else
'判断如果不存在则建立新文件夹
fso.CreateFolder(Server.MapPath(folder))
end if

 1>    
 2> 
 3> 
 4> * * *
 5
 6  
 7iii,文件夹是建立了,文件该如何建立呢?主要也就是文件名的生成。当然这个就需要自己来写个函数,功能就是如何生成文件名:)   
 8
 9
10> 引用: 
11> 
12> * * *
13> 
14>   
15>  ```
16   
17>  function makefilename(fname)   
18>  fname = fname '前fname为变量,后fname为函数参数引用   
19>  fname = replace(fname,"-","")   
20>  fname = replace(fname," ","")   
21>  fname = replace(fname,":","")   
22>  fname = replace(fname,"PM","")   
23>  fname = replace(fname,"AM","")   
24>  fname = replace(fname,"上午","")   
25>  fname = replace(fname,"下午","")   
26>  makefilename = fname & ".html"   
27>  end function   
28>  

>
> 引用函数则:
> ``` fname = makefilename(now())

 1> 
 2> 
 3> * * *
 4
 5  
 6其实嘛,就是以年月日时分秒命名的文件。   
 7  
 8iv,最后,生成的文件该如何查看到?当然需要把生成文件的路径保存的数据库中,并且添加到相对应的记录集中了。当然,这在下面的数据库设计时会提及到。   
 9  
103,模板技术和2HTML技术的结合:将模板中特殊代码的值替换为从表单接受过来的值,完成模板功能;将最终替换过的所有模板代码生成HTML文件。需要注意的是:替换应能将输入数据的格式或者支持UBB的代码彻底改变。   
11  
12  
13二,再进行数据库设计   
14  
15目前数据库的设计需要两个表:一个是存放模板数据的;一个是存放信息内容的。   
16  
171,建立新数据库asp2html.mdb   
18  
192,设计新数据库表c_moban   
20字段m_id(自动编号,主关键字);字段m_html(备注类型)。   
21并将下列完整的代码拷贝至m_html字段   
22
23
24> 引用: 
25> 
26> * * *
27> 
28>   
29>
>>>Cnbruce.Com | ASP2HTML TEST>>>>>>>>
$cntop{LogContent}lt;/td> >
$cnleft{LogContent}lt;/td> >$cnright{LogContent}lt;/td> >
>>``` > > > * * *

3,设计新数据库表c_news

字段c_id:自动编号,主关键字
字段c_title:文本类型,保存文章标题
字段c_content:备注类型,保存文章内容
字段c_filepath:文本类型,保持生成文件的路径地址
字段c_time:日期/时间类型,默认值:Now()

三,页面需求设计

1,首先建立一个存放HTML页的文件夹

在文件同一目录下,建立文件夹newsfile,夹子内部主要存放生成的HTML页面,当然内部还会采用程序方式建立以日期命名的子文件夹,以方便浏览以及管理。

2,功能函数页面lib.asp

> 引用: > > * * * > >
> ```

'生成文件名的函数
function makefilename(fname)
fname = fname
fname = replace(fname,"-","")
fname = replace(fname," ","")
fname = replace(fname,":","")
fname = replace(fname,"PM","")
fname = replace(fname,"AM","")
fname = replace(fname,"上午","")
fname = replace(fname,"下午","")
makefilename=fname & ".shtml"
end function

'保持数据格式不变的函数
function HTMLEncode(fString)
fString = replace(fString, ">", ">")
fString = replace(fString, "<", "<")
fString = Replace(fString, CHR(32), " ")
fString = Replace(fString, CHR(13), "")
fString = Replace(fString, CHR(10) & CHR(10), "

1<br/>

")

fString = Replace(fString, CHR(10), "

1<br/>

")

HTMLEncode = fString
end function

1&gt; 
2&gt; 
3&gt; * * *
4
5  
63,数据库连接页面conn.asp   
7完成数据库的字符串连接方法   

set conn = Server.CreateObject("ADODB.Connection")
connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="&Server.MapPath("asp2html.mdb")
conn.Open connstr

 14,信息输入页面add.html   
 2其实很简单:)就是表单嘛。注意action是跳转到addit.asp   
 3
 4
 5&gt; 引用: 
 6&gt; 
 7&gt; * * *
 8&gt; 
 9&gt;   
10&gt;
> Title:
> Content:
>
> > >
``` > > > > * * *

5,处理数据功能显示页面addit.asp
首先是处理接受过来的数据,并将值写入数据库;接着将模板代码进行引用,并将其中特殊代码转换为接受值,最终通过FSO生成HTML页面。其中需要注意的还有,生成文件的路径地址保存至数据库表。

> 引用: > > * * * > >
> ``` '容错处理

On Error Resume Next

 1&gt;    
 2&gt;
 3<!--#include file="conn.asp" -->
 4&gt;
 5<!--#include file="lib.asp" -->
 6&gt;    
 7&gt;  ```
 8'接受传递值   
 9>  c_title=request.form("c_title")   
10>  c_content=request.form("c_content")   
11>  

>
> ``` '生成HTML文件名,建立文件夹,指定文件路径

fname = makefilename(now()) 'makefilename为自定义函数
folder = "newsfile/"&date()&"/"
filepath = folder&fname

 1&gt;    
 2&gt;  ```
 3'将接受值及路径保持至数据库表   
 4>  sql = "Select * from c_news"   
 5>  Set rs = Server.CreateObject ("ADODB.Recordset")   
 6>  rs.Open sql ,conn,3,2   
 7>  rs.addnew   
 8>  rs("c_title")=c_title   
 9>  rs("c_content")=c_content   
10>  rs("c_filepath")=filepath   
11>  rs.update   
12>  rs.close   
13>  Set rs = Nothing   
14>  

>
> ``` '打开模板代码,并将其中特殊代码转变为接受值

sql1="select m_id,m_html from c_moban where m_id=1"
set rs1=Server.CreateObject("adodb.recordset")
rs1.open sql1,conn,1,1
mb_code=rs1("m_html")
rs1.close
set rs1=nothing
conn.close
set conn=nothing
c_title=htmlencode(c_title)
c_content=htmlencode(c_content)
mb_code=replace(mb_code,"$cntop{LogContent}quot;,now())
mb_code=replace(mb_code,"$cnleft{LogContent}quot;,c_title)
mb_code=replace(mb_code,"$cnright{LogContent}quot;,c_content)

1&gt;    
2&gt;  ```
3'生成HTML页面   
4>  Set fso = Server.CreateObject("Scripting.FileSystemObject")   
5>  fso.CreateFolder(Server.MapPath(folder))   
6>  Set fout = fso.CreateTextFile(Server.MapPath(filepath))   
7>  fout.WriteLine mb_code   
8>  fout.close   
9>  

>
> 文章添加成功,

1<a href="showit.asp">浏览</a>

> > > * * *

6,显示数据库表记录,并做指向HTML页的链接:showit.asp

> 引用: > > * * * > >
>

>

> ```

Set rs = Server.CreateObject ("ADODB.Recordset")
sql = "Select * from c_news order by c_id desc"
rs.Open sql ,conn,1,1

1&gt;    
2&gt;  ```
3   
4>  if rs.EOF and rs.BOF then   
5>  response.write ("暂时还没有文章,

<a href="add.html">添加</a>

1")   
2>  else   
3>  Do Until rs.EOF   
4>  

>

 1<table align="center" bgcolor="#000000" border="0" cellpadding="3" cellspacing="1" width="758">   
 2&gt;  <tr>   
 3&gt;  <td align="right" bgcolor="#CCCCCC" bordercolor="#CCCCCC" width="159">```
 4=rs("c_time")
 5```</td>   
 6&gt;  <td bgcolor="#f3f3f3" bordercolor="#f3f3f3" width="591"><a =rs("c_filepath")="" ```="" href="```" target="a_blank">```
 7=rs("c_title")
 8```</a></td>   
 9&gt;  </tr>   
10&gt;  <tr>   
11&gt;  <td align="right" bgcolor="#ececec" bordercolor="#ececec" valign="top">[<a =rs("c_id")="" ```="" href="del.asp?c_id=```">Dell</a>][<a =rs("c_id")="" ```="" href="change.asp?c_id=```">Edit</a>][<a href="add.html">Add</a>]</td>   
12&gt;  <td bgcolor="#FFFFFF" bordercolor="#FFFFFF" valign="top">```
13=htmlencode(rs("c_content"))
14```</td>   
15&gt;  </tr>   
16&gt;  </table>
1<br/>

> ```

rs.MoveNext
Loop
end if

1&gt;    
2&gt;  ```
3   
4>  rs.close   
5>  Set rs = Nothing   
6>  conn.close   
7>  set conn=Nothing   
8>  

>
> > > * * *

7,修改数据内容页change.asp

修改数据内容,同时也需要修改更新对应的HTML页面。修改其实就是重新生成文件,且文件名和之前一样,类似文件的覆盖。

> 引用: > > * * * > >
>

>

>
> ``` id=request.querystring("c_id")

 1&gt;    
 2&gt;  ```
 3   
 4>  if request.form("submit")="change" then   
 5>  c_title=request.form("c_title")   
 6>  c_content=request.form("c_content")   
 7>  c_id=request.form("c_id")   
 8>  c_filepath=request.form("c_filepath")   
 9>    
10>  Set rs = Server.CreateObject ("ADODB.Recordset")   
11>  sql = "Select * from c_news where c_id="&c_id   
12>  rs.Open sql ,conn,3,2   
13>  rs("c_title")=c_title   
14>  rs("c_content")=c_content   
15>  rs("c_time")=now()   
16>  rs.update   
17>  rs.close   
18>  Set rs = Nothing   
19>  

>
> ``` '打开模板代码,并将其中特殊代码转变为接受值

sql1="select m_id,m_html from c_moban where m_id=1"
set rs1=Server.CreateObject("adodb.recordset")
rs1.open sql1,conn,1,1
mb_code=rs1("m_html")
rs1.close
set rs1=nothing
conn.close
set conn=nothing
c_title=htmlencode(c_title)
c_content=htmlencode(c_content)
mb_code=replace(mb_code,"$cntop{LogContent}quot;,now())
mb_code=replace(mb_code,"$cnleft{LogContent}quot;,c_title)
mb_code=replace(mb_code,"$cnright{LogContent}quot;,c_content)

1&gt;    
2&gt;  ```
3'生成HTML页面   
4>  Set fso = Server.CreateObject("Scripting.FileSystemObject")   
5>  Set fout = fso.CreateTextFile(Server.MapPath(c_filepath))   
6>  fout.WriteLine mb_code   
7>  fout.close   
8>  

> ``` response.redirect("showit.asp")

1&gt;  ```
2end if

>
> ```

if id<>"" then
Set rs = Server.CreateObject ("ADODB.Recordset")
sql ="select * from c_news where c_id="&id
rs.Open sql ,conn,1,1
c_id=rs("c_id")
c_filepath=rs("c_filepath")
c_title=rs("c_title")
c_content=rs("c_content")
end if

1&gt;    
2&gt;
> Title:
> Content:
>
> > > > >
``` > > > > * * *

8,删除记录页del.asp

同样!删除,除了删除数据库表中的记录,与其对应的HTML页面也需删除。代码如下:

> 引用: > > * * * > >
>

>
> ```

c_id = request.querystring("c_id")
sql = "Select * from c_news where c_id="&c_id
Set rs = Server.CreateObject ("ADODB.Recordset")
rs.Open sql ,conn,2,3

filepath=rs("c_filepath")
Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFile(Server.mappath(filepath))
Set fso = nothing

rs.delete
rs.close
Set rs = Nothing
conn.close
set conn=nothing

1&gt;    
2&gt;  ```
3response.redirect("showit.asp")

>
> > > * * *

四,其它功能

模板管理页面:

不会每次都是打开数据库表进行增加或者修改模板代码吧,所以,管理代码的页面程序不能少了,自己捣鼓下应该很简单的。当然,之前管理员的登录认证程序就不在书中交代了:)还有,如果设计了多个模板,那么在发表信息的时候应添加模板选择单选框,同样在执行转换HTML时,SQL选择的不同m_id了。

不管怎么说,先把这些技术自己调试感受下。多多操作,相信“读书千遍,其意自见”。

调试地址: www.cnbruce.com/test/asp2html/showit.asp

文件下载: www.cnbruce.com/test/asp2html/asp2html.rar

Published At
Categories with 数据库类
comments powered by Disqus