ResolveUrl / Url.Content在Classic Asp中等效

时间:2011-11-01 07:34:27

标签: asp.net asp.net-mvc asp-classic

在webform / mvc中,我们可以使用脚本和链接, script src =“Url.Content(”〜/ Scripts / util.js“)”

有人能告诉我经典asp中的等价物吗?

1 个答案:

答案 0 :(得分:7)

没有直接的等价物,甚至没有直接的方法来确定应用程序的虚拟路径。以下几个VBScript函数应该提供以下功能:

Function UrlContent(sUrl)
    If InStr(1, sUrl, "~/") = 1 Then
        UrlContent = ApplicationPath & Mid(sUrl, 2)
    Else
        UrlContent = sUrl
    End If
End Function

Function ApplicationPath()

    Dim pos: pos = Len(Request.ServerVariables("INSTANCE_META_PATH")) + 6

    ApplicationPath = Mid(Request.ServerVariables("APPL_MD_PATH"), pos)

End Function