好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 分享一個好東東,動態(tài)Include文件 (Dynamic File Includes)

分享一個好東東,動態(tài)Include文件 (Dynamic File Includes)

熱門標(biāo)簽:地圖標(biāo)注還可以做嗎 硅基電話機(jī)器人加盟 電銷機(jī)器人采購 高質(zhì)量的電銷外呼系統(tǒng) 宿州防封外呼系統(tǒng)平臺 滴滴地圖標(biāo)注上車點 無營業(yè)執(zhí)照地圖標(biāo)注教學(xué) 外呼系統(tǒng)怎么話費 友邦互聯(lián)電銷機(jī)器人違法嗎
早在03年就在藍(lán)色理想上看到過動態(tài)Include的文章,當(dāng)時已經(jīng)覺得很厲害,但實際應(yīng)用了一下,不方便而且Include的效果不好.

后來又在一網(wǎng)站上看到了改進(jìn)版的,但是也不太好用~~~

哎,當(dāng)時我真是覺得有點想放棄ASP了,但是由于公司還是用ASP來開發(fā),我也是沒有辦法...

今天,我一定要記住今天~~~在國外的一個網(wǎng)站上我竟然發(fā)現(xiàn)了這樣一個好東東,太棒了~~~Great works!!!

以前試的一些動態(tài)Include代碼,都無法Include一個類,甚至函數(shù)~~~又或者Include文件中的Include無法被包含...

現(xiàn)在這個鬼佬(dselkirk)寫的類可以為我們做到這些了~~~
復(fù)制代碼 代碼如下:


  public include, include_vars 
  set include = new cls_include 

  class cls_include 

    private sub class_initialize() 
      set include_vars = server.createobject("scripting.dictionary") 
    end sub 
    private sub class_deactivate() 
      arr_variables.removeall 
      set include_vars = nothing 
      set include = nothing 
    end sub 

    public default function include(byval str_path) 
      dim str_source 
      if str_path > "" then 
        str_source = readfile(str_path) 
        if str_source > "" then 
          processincludes str_source 
          convert2code str_source 
          formatcode str_source 
          if str_source > "" then 
            if request.querystring("debug") = 1 then 
              response.write str_source 
              response.end 
            else 
              executeglobal str_source 
              include_vars.removeall 
            end if 
          end if 
        end if 
      end if 
    end function 

    private sub convert2code(str_source) 
      dim i, str_temp, arr_temp, int_len 
      if str_source > "" then 
        if instr(str_source,"%"  ">") > instr(str_source,""  "%") then 
          str_temp = replace(str_source,""  "%","|%") 
          str_temp = replace(str_temp,"%"  ">","|") 
          if left(str_temp,1) = "|" then str_temp = right(str_temp,len(str_temp) - 1) 
          if right(str_temp,1) = "|" then str_temp = left(str_temp,len(str_temp) - 1) 
          arr_temp = split(str_temp,"|") 
          int_len = ubound(arr_temp) 
          if (int_len + 1) > 0 then 
            for i = 0 to int_len 
              str_temp = trim(arr_temp(i)) 
              str_temp = replace(str_temp,vbcrlf  vbcrlf,vbcrlf) 
              if left(str_temp,2) = vbcrlf then str_temp = right(str_temp,len(str_temp) - 2) 
              if right(str_temp,2) = vbcrlf then str_temp = left(str_temp,len(str_temp) - 2) 
              if left(str_temp,1) = "%" then 
                str_temp = right(str_temp,len(str_temp) - 1) 
                if left(str_temp,1) = "=" then 
                  str_temp = right(str_temp,len(str_temp) - 1) 
                  str_temp = "response.write "  str_temp 
                end if 
              else 
                if str_temp > "" then 
                  include_vars.add i, str_temp 
                  str_temp = "response.write include_vars.item("  i  ")"  
                end if 
              end if 
              str_temp = replace(str_temp,chr(34)  chr(34)  "  ","") 
              str_temp = replace(str_temp,"  "  chr(34)  chr(34),"") 
              if right(str_temp,2) > vbcrlf then str_temp = str_temp 
              arr_temp(i) = str_temp 
            next 
            str_source = join(arr_temp,vbcrlf) 
          end if 
        else 
          if str_source > "" then 
            include_vars.add "var", str_source 
            str_source = "response.write include_vars.item(""var"")" 
          end if 
        end if 
      end if 
    end sub 

    private sub processincludes(str_source) 
      dim int_start, str_path, str_mid, str_temp 
      str_source = replace(str_source,"!-- #","!--#") 
      int_start = instr(str_source,"!--#include") 
      str_mid = lcase(getbetween(str_source,"!--#include","-->")) 
      do until int_start = 0 
        str_mid = lcase(getbetween(str_source,"!--","-->")) 
        int_start = instr(str_mid,"#include") 
        if int_start >  0 then 
          str_temp = lcase(getbetween(str_mid,chr(34),chr(34))) 
          str_temp = trim(str_temp) 
          str_path = readfile(str_temp) 
          str_source = replace(str_source,"!--"  str_mid  "-->",str_path  vbcrlf) 
        end if 
        int_start = instr(str_source,"#include") 
      loop 
    end sub 

    private sub formatcode(str_code) 
      dim i, arr_temp, int_len 
      str_code = replace(str_code,vbcrlf  vbcrlf,vbcrlf) 
      if left(str_code,2) = vbcrlf then str_code = right(str_code,len(str_code) - 2) 
      str_code = trim(str_code) 
      if instr(str_code,vbcrlf) > 0 then 
        arr_temp = split(str_code,vbcrlf) 
        for i = 0 to ubound(arr_temp) 
          arr_temp(i) = ltrim(arr_temp(i)) 
          if arr_temp(i) > "" then arr_temp(i) = arr_temp(i)  vbcrlf 
        next 
        str_code = join(arr_temp,"") 
        arr_temp = vbnull 
      end if 
    end sub 

    private function readfile(str_path) 
      dim objfso, objfile 
      if str_path > "" then 
        if instr(str_path,":") = 0 then str_path = server.mappath(str_path) 
        set objfso = server.createobject("scripting.filesystemobject") 
        if objfso.fileexists(str_path) then 
          set objfile = objfso.opentextfile(str_path, 1, false) 
          if err.number = 0 then 
            readfile = objfile.readall 
            objfile.close 
          end if 
          set objfile = nothing 
        end if 
        set objfso = nothing 
      end if 
    end function 

    private function getbetween(strdata, strstart, strend) 
      dim lngstart, lngend 
      lngstart = instr(strdata, strstart) + len(strstart) 
      if (lngstart > 0) then 
        lngend = instr(lngstart, strdata, strend) 
        if (lngend > 0) then 
          getbetween = mid(strdata, lngstart, lngend - lngstart) 
        end if 
      end if 
    end function 

  end class 
%>

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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《分享一個好東東,動態(tài)Include文件 (Dynamic File Includes)》,本文關(guān)鍵詞  分享,一個,好,東東,動態(tài),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《分享一個好東東,動態(tài)Include文件 (Dynamic File Includes)》相關(guān)的同類信息!
  • 本頁收集關(guān)于分享一個好東東,動態(tài)Include文件 (Dynamic File Includes)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 午夜视频导航| 国产乱码一区二区三区的区别| 大伊香蕉精品二区视频在线| 农民工在工棚做爰| 精品国产第一区二区三区的特点| 男人扒开添女人下部视频| 特殊奖励漫画| 国精产品一区一区三区公司背景| 久久综合激情七月色婷婷| 日本哎哎哎视频免费1000| 人人爽人人爱| 二人の巨乳妻美和と茜?演员| www.日本一区到六区在线观看| www色婷婷| 土默特右旗| 日本一区不卡在线| 忘忧草社区日本在线www| 久久er99热精品一区二区| 国产亲子乱A片免费视频| 痴母动漫在线观看| 夫妇交换性4p中文字幕| 全免费A级毛片免费看无码| 蜜月av国内精品久久久夜夜 | 精产国品一区二区三区| 一级做aA片毛片久久久婷王蒲| 男女吃奶动态图| 寡妇的男人| 双男调教| 国模和精品嫩模私拍视频| 成人??高潮片免费视频吃奶| 欧美Av中文无码字幕色本草| 安娜情欲史2部未删减版| 8x8ⅹ国产精品一区二区| 强壮公侵犯中文字幕日本无码| 国产自啪啪| 美女脱了内裤被打屁屁图片 | 一本一道精品无码亚洲道久久| 朝鲜女人白嫩大肥臀ass| 韩国伦理电影在线天堂观看影院 | 俄罗斯美女极品aⅴ| 免费很黄60分钟不遮挡|