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

前端之家收集整理的这篇文章主要介绍了asp-classic – 经典ASP – 获取完整的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”,“”)来删除扩展名.

原文链接:https://www.f2er.com/aspnet/246876.html

猜你在找的asp.Net相关文章