加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net – ResolveUrl / Url.Content在Classic Asp中等效

发布时间:2020-12-15 23:57:02 所属栏目:asp.Net 来源:网络整理
导读:在webform / mvc中我们可以使用脚本和链接, script src =“Url.Content(”?/ Scripts / util.js“)” 谁能告诉我经典asp中的等价物是什么? 解决方法 没有直接的等价物,甚至没有直接的方法来确定应用程序的虚拟路径.以下几个VBScript函数应该提供以下功能:
在webform / mvc中我们可以使用脚本和链接,
script src =“Url.Content(”?/ Scripts / util.js“)”

谁能告诉我经典asp中的等价物是什么?

解决方法

没有直接的等价物,甚至没有直接的方法来确定应用程序的虚拟路径.以下几个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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读