主頁 > 知識(shí)庫 > ASP Crazy 模版操作類(最簡單的模板類、僅提供交流)

ASP Crazy 模版操作類(最簡單的模板類、僅提供交流)

熱門標(biāo)簽:外呼系統(tǒng)還用卡么 徐州人工智能電銷機(jī)器人好用嗎 智能電銷機(jī)器人適用于哪些行業(yè) 武漢營銷電話機(jī)器人軟件 地圖標(biāo)注宅基地 地圖標(biāo)注服務(wù)哪家好 長沙防封電銷卡品牌 西寧公司外呼系統(tǒng)平臺(tái) 騰訊地圖標(biāo)注商戶關(guān)閉
文件名:Awa_temp.Class.asp
復(fù)制代碼 代碼如下:

%
'Crazy蛙!模板操作類

'作者Crazy~蛙! QQ:379969387 歡迎交流
'版本V1.0;
Class AwaTemp
Public aa
Private FSO,StrTemp,FileData,GetDatas,StrHtmlName,htmlwrite,StrLabel,StrLValues
'===========================================
'構(gòu)造函數(shù)_初始化FSO組件
'===========================================
Private Sub Class_Initialize()
Set FSO=Server.CreateObject("Scripting.FileSystemObject")
End Sub
'===========================================
'構(gòu)析函數(shù)_銷毀FSO組件
'===========================================
Private Sub Class_terminate()
Set FSO=nothing
End Sub
'===========================================
'類屬性
'===========================================
'版本信息
Public Property Get Version
Version="Crazy~蛙! 模板操作類!V1.0版本;"
End Property
'獲取模板地址以及名稱
Public Property Let Temp(ByVal Values)
StrTemp=Values
End Property
'獲取生成文件的文件名
Public Property Let HtmlName(ByVal Values)
StrHtmlName=Values
End Property
'獲取標(biāo)簽
Public Property Let Label(ByVal Values)
StrLabel=Values
End Property
'獲取將標(biāo)簽替換的值
Public Property Let LValues(ByVal Values)
StrLValues=Values
End Property
'===========================================
'類方法
'===========================================
'檢查模板設(shè)置以及是否存在
Private Function Check()
If StrTemp="" Then
Check="span style='color:red;'>錯(cuò)誤:未設(shè)置模板文件存儲(chǔ)位置!/span>"
Else
If FSO.FileExists(StrTemp)=false Then
Check="span style='color:red;'>錯(cuò)誤:指定模板不存在!/span>"
Else
Check=true
End If
End If
End Function
'讀取模板頁
Public Sub ReadTemp()
If Check()>true Then
Response.Write Check()
Response.End()
Else
Set GetDatas=FSO.OpenTextFile(Server.MapPath(StrTemp))
FileData=GetDatas.ReadAll
GetDatas.Close
Set GetData=nothing
End If
End Sub
'替換內(nèi)容
Public Function Rep()
If StrLabel="" Then
Response.Write "span style='color:red;'>錯(cuò)誤:未設(shè)置欲替換的標(biāo)簽!/span>"
Response.End()
End If
If StrLValues="" Then
Response.Write "span style='color:red;'>錯(cuò)誤:未設(shè)置替換標(biāo)簽的數(shù)據(jù)!/span>"
Response.End()
End If
FileData=Replace(FileData,StrLabel,StrLValues)
End Function
'輸出
Public Sub Echo()
Response.Write FileData
End Sub
'生成靜態(tài)頁面
Public Sub GetHtml()
If StrHtmlName="" Then
Response.Write "span style='color:red;'>錯(cuò)誤:未設(shè)置生成Html文件存儲(chǔ)位置以及文件名稱!/span>"
Response.End()
End If
Set htmlwrite=FSO.CreateTextFile(Server.MapPath(StrHtmlName),true)
'寫入網(wǎng)頁內(nèi)容
htmlwrite.WriteLine FileData
htmlwrite.Close
set htmlwrite=Nothing
End Sub
End Class
%>

用法示例:

index.asp
復(fù)制代碼 代碼如下:

!--#include file="Awa_temp.Class.asp"-->
%
Set awa=New AwaTemp
With awa
.Temp="temp.tpl"
.ReadTemp
.Label="{tl1}"
.LValues="蛋疼"
.Rep
.Echo
'.HtmlName="aa/index.html"
'.GetHtml
End With
Set awa=nothing
%>

模版

temp.tpl:
復(fù)制代碼 代碼如下:

!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
title>無標(biāo)題文檔/title>
/head>

body>
table width="200" border="1">
tr>
td>{tl1}/td>
td>{tl2}/td>
td>{tl3}/td>
/tr>
tr>
td>nbsp;/td>
td>nbsp;/td>
td>nbsp;/td>
/tr>
tr>
td>nbsp;/td>
td>nbsp;/td>
td>nbsp;/td>
/tr>
/table>
/body>
/html>

標(biāo)簽:通遼 鷹潭 雅安 通化 荊門 普洱 運(yùn)城 巴彥淖爾

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP Crazy 模版操作類(最簡單的模板類、僅提供交流)》,本文關(guān)鍵詞  ASP,Crazy,模版,操作,類,最簡單,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP Crazy 模版操作類(最簡單的模板類、僅提供交流)》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP Crazy 模版操作類(最簡單的模板類、僅提供交流)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章