在ASP.NET里得到网站的域名
在ASP.NET里得到网站的域名
发布时间:2016-12-29 来源:查字典编辑
摘要:Dimurl,host_url,no_http,host_nameAsString'定义变量url=HttpContext.Current....

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

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新asp.net教程学习
热门asp.net教程学习
编程开发子分类