Mega Code Archive
Create UriBuilder class with the scheme, host, port number, path and query string or fragment identifier
Imports System.IO
Imports System.Net
Imports System.Text
public class MainClass
Shared Sub Main()
Dim myUri As New UriBuilder("http", "www.yourDomain.com", 8080, "index.htm", "#top")
End Sub
End Class