1. 首页
  2. 数据库
  3. 其它
  4. 在ASP.NET里得到网站的域名

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

上传者: 2021-01-17 04:42:11上传 PDF文件 27.71KB 热度 13次
Dim url, host_url, no_http, host_name As String ‘定义变量url = HttpContext.Current.Request.Url.ToString ‘获取当前页的URLno_http = url.Substring(url.IndexOf(“//”) + 2) ‘截取去掉HTTP://的URLhost_url = “http://” & no_http.Substring(0, no_http.IndexOf(“/”) + 1)
用户评论