gpt4 book ai didi

asp-classic - 经典 ASP - 获取完整的 url 名称

转载 作者:行者123 更新时间:2023-12-04 02:38:15 25 4
gpt4 key购买 nike

我想知道是否有人可以帮助我。

我有以下 URL(这是动态的)

www.website.com/images/gal/boxes-pic004.asp

如何使用经典 ASP 提取“boxes-pic004”部分

谢谢

最佳答案

<%
Dim sScriptLocation, sScriptName, iScriptLength, iLastSlash

sScriptLocation = Request.ServerVariables("URL")
iLastSlash = InStrRev(sScriptLocation, "/")
iScriptLength = Len(sScriptLocation)
sScriptName = Right(sScriptLocation, iScriptLength - iLastSlash)
%>
sScriptName然后将包含 boxes-pic004.asp ,那么您可以使用 Replace(sScriptName, ".asp", "")也删除扩展。

关于asp-classic - 经典 ASP - 获取完整的 url 名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18632131/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com