asp如何動態include檔案

來源:互聯網
上載者:User

必須存在該檔案並且會預先編譯(不管前面是否加以條件)

經常有這樣的要求,根據不同的需求要求include不同的檔案
如各個人的不同設定,所以要求能動態include檔案。

代碼如下:
 

 
  1. <%  
  2. Function include(filename)  
  3.     Dim re,content,fso,f,aspStart,aspEnd  
  4.     set fso=CreateObject("Scripting.FileSystemObject")  
  5.     set f=fso.OpenTextFile(server.mappath(filename))  
  6.     content=f.ReadAll  
  7.     f.close  
  8.     set f=nothing 
  9.     set fso=nothing 
  10.     set re=new RegExp  
  11.     re.pattern="^\s*=" 
  12.     aspEnd=1 
  13.     aspStart=inStr(aspEnd,content,"<%")+2  
  14.     do while aspStart>aspEnd+1  
  15.         Response.write Mid(content,aspEnd,aspStart-aspEnd-2)  
  16.         aspEnd=inStr(aspStart,content,"%\>")+2  
  17.         Execute(re.replace(Mid(content,aspStart,aspEnd-aspStart-2),"Response.Write "))  
  18.         aspStart=inStr(aspEnd,content,"<%")+2  
  19.     loop  
  20.     Response.write Mid(content,aspEnd)  
  21.     set re=nothing 
  22. End Function  
  23. %>   


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.