Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ResolveUrl/Url.Content Equivalent in Classic Asp

In webform/mvc we can use script and links as, script src=" Url.Content("~/Scripts/util.js")"

Can anyone tell me what is the equivalent in classic asp?

like image 205
Imran Qadir Baksh - Baloch Avatar asked Nov 01 '11 07:11

Imran Qadir Baksh - Baloch


1 Answers

There is no direct equivalent, there isn't even a direct way to determine the applications virtual path. The following couple of VBScript functions should provide the feature:

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
like image 79
AnthonyWJones Avatar answered Oct 16 '22 20:10

AnthonyWJones