1. ホーム
  2. Web プログラミング
  3. ASP プログラミング
  4. アプリケーションのヒント

aspで仮想ディレクトリのルートパスを取得するコード

2022-01-16 19:29:54

コアとなるコードです。

<%
TempArray = Array("account_book","admin","ajaxFile","catalog","excel","excel_ stu","frame","inc","lib","pub", "stock","student","sygl" ,"temp","windows")
url= LCase(Server.MapPath(". /"))
for i=0 to UBound(TempArray)
url=Replace(url,"\"&TempArray(i),"")
Next
response.write url
%>