在ASP.NET里得到网站的域名
程序员文章站
2023-11-25 13:43:58
dim url, host_url, no_http, host_name as string &nb...
dim url, host_url, no_http, host_name as string '定义变量
url = httpcontext.current.request.url.tostring '获取当前页的url
no_http = url.substring(url.indexof("//") + 2) '截取去掉http://的url
host_url = "http://" & no_http.substring(0, no_http.indexof("/") + 1) '组合成当前网站的域名