主頁 > 知識庫 > asp下用實現(xiàn)模板加載的的幾種方法總結(jié) 原創(chuàng)

asp下用實現(xiàn)模板加載的的幾種方法總結(jié) 原創(chuàng)

熱門標(biāo)簽:地圖標(biāo)注還可以做嗎 電銷機器人采購 高質(zhì)量的電銷外呼系統(tǒng) 外呼系統(tǒng)怎么話費 宿州防封外呼系統(tǒng)平臺 硅基電話機器人加盟 無營業(yè)執(zhí)照地圖標(biāo)注教學(xué) 滴滴地圖標(biāo)注上車點 友邦互聯(lián)電銷機器人違法嗎
1、使用adodb.stream實現(xiàn)的 一般虛擬主機都提供
復(fù)制代碼 代碼如下:

function loadtempletfile(byval path)  
    on error resume next  
    dim objstream  
    set objstream = server.createobject("adodb.stream")  
    with objstream  
        .type = 2  
        .mode = 3  
        .open  
        .loadfromfile server.mappath(path)  
        if err.number > 0 then  
            err.clear  
             response.write("預(yù)加載的模板["  path  "]不存在!")  
            response.end()  
        end if  
        .charset = ""  chrset  ""  
        .position = 2  
            loadtempletfile = .readtext  
        .close  
    end with  
    set objstream = nothing  
end function 

2、用fso實現(xiàn)模板的加載速度快,但好多虛擬主機不提供fso功能
復(fù)制代碼 代碼如下:

'*******************************************************************************************************
        '函數(shù)名:LoadTemplate
        '作  用:取出模板內(nèi)容
        '參  數(shù):TemplateFname模板地址
        '返回值:模板內(nèi)容
        '********************************************************************************************************
        Function LoadTemplate(TemplateFname)
            on error resume next
            Dim FSO, FileObj, FileStreamObj 
            Set FSO = CreateObject("scripting.filesystemobject")
              TemplateFname = Server.MapPath(Replace(TemplateFname, "http://", "/"))
              If FSO.FileExists(TemplateFname) = False Then
                LoadTemplate = "模板不存在,請先綁定!"
              Else
                Set FileObj = FSO.GetFile(TemplateFname)
                Set FileStreamObj = FileObj.OpenAsTextStream(1)
                If Not FileStreamObj.AtEndOfStream Then
                    LoadTemplate = FileStreamObj.ReadAll
                Else
                    LoadTemplate = "模板內(nèi)容為空"
                End If
              End If
              Set FSO = Nothing:Set FileObj = Nothing:Set FileStreamObj = Nothing
              LoadTemplate=LoadTemplate  Published
        End Function
'**************************************************

ASP使用FSO讀取模板的代碼
3、還有一種就是把模板放到數(shù)據(jù)庫中(速度慢)

標(biāo)簽:宣城 錫林郭勒盟 江門 新余 七臺河 儋州 廣元 雅安

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp下用實現(xiàn)模板加載的的幾種方法總結(jié) 原創(chuàng)》,本文關(guān)鍵詞  asp,下用,實現(xiàn),模板,加載,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp下用實現(xiàn)模板加載的的幾種方法總結(jié) 原創(chuàng)》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp下用實現(xiàn)模板加載的的幾種方法總結(jié) 原創(chuàng)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章