gpt4 book ai didi

asp-classic - 如何在经典 ASP 中获取当前域?

转载 作者:行者123 更新时间:2023-12-03 21:19:37 24 4
gpt4 key购买 nike

我想获取当前域,所以如果页面是 http://www.domain.com/page.asp我需要www.domain.com

最佳答案

Request.ServerVariables("SERVER_NAME")'

完整地说,我的功能之一:
  function PageUrl
dim sPort
sPort = Request.ServerVariables("SERVER_PORT")
if sPort = "80" then
sPort = ""
else
sPort = ":" & sPort
end if

PageUrl = "http://" & Request.ServerVariables("SERVER_NAME") & sPort & _
Request.ServerVariables("URL") & "?" & _
Request.ServerVariables("QUERY_STRING")
end function

关于asp-classic - 如何在经典 ASP 中获取当前域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2148952/

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