热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

获取vb.net中的当前URL-GetcurrentURLinvb.net

Iammakingawebsiteinvisualstudio2010(invisualbasic)andIreallyneedtoknowhowtogett

I am making a website in visual studio 2010 (in visual basic) and I really need to know how to get the URL from a VB statement (in the aspx.vb file, on page load).

我正在visual studio 2010中创建一个网站(在visual basic中),我真的需要知道如何从VB语句中获取URL(在aspx.vb文件中,在页面加载时)。

3 个解决方案

#1


14  

There's a few properties that can give you the information. Here's an example.

有一些属性可以为您提供信息。这是一个例子。

Dim url As String = HttpContext.Current.Request.Url.AbsoluteUri
Dim path As String = HttpContext.Current.Request.Url.AbsolutePath
Dim host As String = HttpContext.Current.Request.Url.Host

#2


0  

VB.NET

VB.NET

Imports System.Net.Dns
Imports System.Net

Dim host As String = HttpContext.Current.Request.Url.Host
Dim hostname As IPHostEntry = Dns.GetHostEntry(host)
Dim ip As IPAddress() = hostname.AddressList
Label1.Text = ip(1).ToString()

#3


0  

Try this.

尝试这个。

.Html Page

.Html页面

 

Url:

in .Vb Page

in .Vb

protected void Page_Load(object sender, EventArgs e)
    {
        Label1.Text = Request.Url.ToString();

    }

推荐阅读
author-avatar
null100
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有