首页 > 编程 > .NET > 正文

在ASP.NET里得到网站的域名

2024-07-10 13:10:37
字体:
来源:转载
供稿:网友

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)   '组合成当前网站的域名

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表