|
  
- UID
- 1
- 帖子
- 738
- 精华
- 28
- 积分
- 14327
- 金币
- 2449
- 威望
- 1647
- 贡献
- 1397
|
网页生成静态Html文件有许多好处,比如生成html网页有利于被搜索引擎收录,不仅被收录的快还收录的全.前台脱离了数据访问,减轻对数据库访问的压力,加快网页打开速度.
& J+ ?* C+ X. p9 Z; q# ]像www.aspid.cn的主站就采用了TSYS生成html文件!
, @5 ]" v" a5 \ Q) p$ j所以吟清最近对生成html比较感兴趣,看了不少文章,也有一点点收获. 7 J3 R. h' M7 g
, Q8 q+ n5 B; K" F& K
1,下面这个例子直接利用FSO把html代码写入到文件中然后生成.html格式的文件 <%
s ~! @; V' Q- r2 Ffilename="test.htm"
5 Z3 D" a, u7 lif request("body")<>"" then
' M6 N4 L* T3 c( d/ p$ t) bset fso = Server.CreateObject("Scripting.FileSystemObject") - Z' p: h, |' A, `( L/ Q
set htmlwrite = fso.CreateTextFile(server.mappath(""&filename&""))
0 A( } o7 B. ?0 d" j' k' W* Chtmlwrite.write "<html><head><title>" & request.form("title") & "</title></head>" / e9 B( p9 H) a7 V
htmlwrite.write "<body>输出Title内容: " & request.form("title") & "<br /> 输出Body内容:" & request.form("body")& "</body></html>"
& d% J& i7 v/ ^( Khtmlwrite.close # A9 W! X0 j+ R0 J5 q5 @
set fout=nothing
; H# z' s: O$ Oset fso=nothing
+ g- p7 v) H3 V" F" F2 Mend if , ^. u8 a+ y! q7 ?8 i
%>
$ B. y" R0 v$ L- S<form name="form" method="post" action="">
. f1 W1 H! j; C8 q8 e<input name="title" value="Title" size=26>
; |8 G5 F8 t1 K/ ^$ z6 y1 n4 F<br> . O$ _# g- \0 Y0 [
<textarea name="body">Body</textarea>
2 U1 B/ ]0 C; {' s5 m<br>
( L$ h4 g; ]5 o7 t/ R<br>
* A/ S0 ?. X3 E* u& p; w<input type="submit" name="Submit" value="生成html">
+ F$ |4 g" `2 B- W5 Y3 h& m</form> 8 A9 z' t8 o9 Q" R0 c$ J, e( u
2,但是按照上面的方法生成html文件非常不方便,第二种方法就是利用模板技术,将模板中特殊代码的值替换为从表单或是数据库字段中接受过来的值,完成模板功能;将最终替换过的所有模板代码生成HTML文件.这种技术采用得比较多,大部分的CMS都是使用这类方法. 2 U( \& v& N* M9 }& T
template.htm ' //模板文件 <html> . Q/ O: M$ ^5 K0 Z3 E
<head>
. ?( }0 A: \- C! G1 @<title>$title$ by aspid.cn</title> * j, B6 l1 }" v$ \, {3 W. B/ h
</head> " i/ C z& w) H; w* W
<body> + o3 N- @" ?5 J* y9 `# |. w
$body$
, u9 ~9 a" C# c/ x* V4 b( J$ A- @</body>
6 ]& `' X. }9 Z9 [ U- ?( h</html> ? % z4 O% u5 z- u! n8 D
& }# V( Z! `7 [3 ~7 i) R2 A. G
TestTemplate.asp '// 生成Html <% % z2 {% Z: @; R( u
Dim fso,htmlwrite
3 C! Y& G3 X5 f2 E* XDim strTitle,strContent,strOut
5 t* T* I# ^5 ~' `. W'// 创建文件系统对象
0 a+ Y7 `9 Z) w8 y0 G; W( J1 D/ }0 aSet fso=Server.CreateObject("Scripting.FileSystemObject")
+ t5 S7 S% I8 ~9 Q+ S2 n# L' z6 A'// 打开网页模板文件,读取模板内容
4 R6 R, D: c" ]# g* d4 j4 }Set htmlwrite=fso.OpenTextFile(Server.MapPath("Template.htm"))
# e" O$ f3 T, astrOut=f.ReadAll 4 c& p4 o2 Z4 e
htmlwrite.close 8 M7 G- ]3 E, e
' S% D7 Z0 J0 M2 b: P
strTitle="生成的网页标题"
O; c5 z0 M& BstrC 0 \3 N' o' V' q& }: v
2 j! C5 a4 E2 m* I
'// 用真实内容替换模板中的标记 / V ]2 \8 @- {( {2 ~. K
strOut=Replace(strOut,"$title$",strTitle) " _- P1 l# ^6 {9 V* ^5 E* W; N
strOut=Replace(strOut,"$body$",strContent)
! L1 ~! D& `% C: b2 B* r
: `6 p v; A* g! l'// 创建要生成的静态页 / x# |( _$ _! E$ x
Set htmlwrite=fso.CreateTextFile(Server.MapPath("test.htm"),true) 4 Q2 \5 U% v8 P1 Y
7 x: W+ ?) O( t5 k* Y'// 写入网页内容 ' p. }% \! F" W5 X; }' i* J
htmlwrite.WriteLine strOut e. j& y, ]0 Z) v# l
htmlwrite.close 6 G4 j1 Y# G7 ^+ W8 J
9 g9 u4 W' o; g1 M, Z
Response.Write "生成静态页成功!" 3 s0 i' h* j& { }4 i
; P+ l/ U4 H' Q6 z: O'// 释放文件系统对象
c2 X& o E9 Mset htmlwrite=Nothing ( t! n' @; Z2 G' l
set fso=Nothing . s3 j! q9 G3 {5 l) c, y' a+ }& a
%>
4 y* f# h- ?/ z3 T6 u9 t h, e0 i. {/ F) ?
3,第三种方法就是用XMLHTTP获取动态页生成的HTML内容,再用ADODB.Stream或者Scripting.FileSystemObject保存成html文件。这句话是在蓝色理想上看到的,对XMLHTTP吟清还不熟悉正在找资料了解.找到一段XMLHTTP生成Html的代码参考一下.
& M3 R7 D+ _9 W' Z9 B# _$ c! B; J<% 9 @; R* \( d& Q) ]) s; H
$ L% v3 @; i# \/ j" P'常用函数
6 }5 l2 \3 K! n- D'1、输入url目标网页地址,返回值getHTTPPage是目标网页的html代码 3 I+ }1 c7 `& }, P
function getHTTPPage(url)
3 s* g9 m. [! |: C" L$ fdim Http : H9 w- B0 ~0 f! h% l0 z4 U
set Http=server.createobject("MSXML2.XMLHTTP") 2 o" F9 {' `% f* ^7 K
Http.open "GET",url,false
$ i) s. @$ _1 T7 _Http.send()
& M( ~" m( X5 z5 E1 }! R: x: \- Xif Http.readystate<>4 then
* d w) E; F# c0 D! R& c0 Pexit function : E( n$ \$ ]0 k$ z
end if ; i3 _" e1 c U: D3 w
getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312") 1 O* j }' \" x1 P/ ]
set http=nothing
! v! Y& p4 q) o. B) Uif err.number<>0 then err.Clear 7 j1 Y( y; x& T2 o# N9 Z) u. U2 w
end function
1 r& Z8 q' X1 n% E2 O( V* m7 h- L
/ H# I* E/ {: p% v, L, a |$ Y' {'2、转换乱玛,直接用xmlhttp调用有中文字符的网页得到的将是乱玛,可以通过adodb.stream组件进行转换
/ W. Y4 G% o7 `+ `' j, h {7 BFunction BytesToBstr(body,Cset)
3 z8 d5 q+ J- a4 zdim objstream 3 U( H) I8 M# N# O
set objstream = Server.CreateObject("adodb.stream")
' X( V' g: O& s0 i4 T. mobjstream.Type = 1 " @0 x9 I; q3 g+ W! u) B
objstream.Mode =3 0 k- C0 a8 }/ ?! D" N; q: b
objstream.Open
, M4 {- n6 D# n( D0 [7 bobjstream.Write body 3 M1 g4 `: L$ {- a8 G, l3 y
objstream.Position = 0 4 | H6 v9 I, m: F
objstream.Type = 2
0 X; r a1 t1 t, h8 n- G; _( Robjstream.Charset = Cset ! m" j1 b# y4 q# D. H$ {% A& }0 B
BytesToBstr = objstream.ReadText
$ E0 [9 @, J* Q# wobjstream.Close % Y+ e: H( s; g7 N, o
set objstream = nothing . ?" X8 a8 A9 }0 l" i
End Function
2 l4 q) I5 [6 F! A5 d& n
2 S" o& I7 f2 x9 T" p
; x2 d2 W1 f) K/ stxtURL=server.MapPath("../index.asp") 7 A' d# l+ Z* h9 o' \3 ]
0 b5 i6 k4 B1 G# c& [ rsText = getHTTPPage(txtURL) . h* F% q, Y& V. {1 R7 H
* ~' L8 I# y+ M2 i
Set FileObject=Server.CreateObject("Scripting.FileSystemObject") 7 t: B2 h1 b0 k
filename="../index.htm"
9 X) Y% Z/ G2 F+ C# l! x N6 ?Set openFile=FileObject.OpenTextfile(server.mapPath(filename),2,true) 'true为不存在自行建立
8 I0 d9 d; |( J; [0 BopenFile.writeline(sText)
' b! k" n% I* `+ M) I" h n. ESet OpenFile=nothing 0 U! w8 d1 Y7 F. c4 f
! c2 W' `8 C, }$ X6 C/ \5 X% Y
%> % q8 H: _3 w; d y0 c) ^
<script>
- h6 W& h- W1 ]( B# Ealert("静态网页生成完毕"); 8 ~) r9 L9 h2 S0 n. E5 b; B4 R
history.back();
( F+ ~' m* v: k2 L% B" p</script> |
|