指引网

当前位置: 主页 > 编程开发 > ASP >

asp url转换函数

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:44
[摘要] 指引教程为您提供asp url转换函数等资源,欢迎您收藏本站,我们将为您提供最新的asp url转换函数资源
<script>ec(2);</script>

' 函数名:RelativePath2RootPath
' 作  用:转为根路径格式
' 参  数:url ----原URL
' 返回值:转换后的URL
'================================================
Function RelativePath2RootPath(url)
 Dim sTempUrl
 sTempUrl = url
 If Left(sTempUrl, 1) = "/" Then
  RelativePath2RootPath = sTempUrl
  Exit Function
 End If

 Dim sFilePath
 sFilePath = Request.ServerVariables("SCRIPT_NAME")
 sFilePath = Left(sFilePath, InstrRev(sFilePath, "/") - 1)
 Do While Left(sTempUrl, 3) = "../"
  sTempUrl = Mid(sTempUrl, 4)
  sFilePath = Left(sFilePath, InstrRev(sFilePath, "/") - 1)
 Loop
 RelativePath2RootPath = sFilePath & "/" & sTempUrl
End Function

------分隔线----------------------------