Je crée un site Web dans Visual Studio 2010 (Visual Basic) et j'ai vraiment besoin de savoir comment obtenir l'URL à partir d'une instruction VB (dans le fichier aspx.vb, au chargement de la page).
Il y a quelques propriétés qui peuvent vous donner l'information. Voici un exemple.
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
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()
Essaye ça.
.Html Page
<div>
<h1> Url: </h1> <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
</div>
in .Vb Page
protected void Page_Load(object sender, EventArgs e)
{
Label1.Text = Request.Url.ToString();
}