How to open a new web page in the same window in Visual Basic? Help with full code, zero in this case

    1 answer 1

    This is just using Process.Start :

    Dim url As String = "http://hashcode.ru/" Process.Start(url)