Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
01Private Sub urlbox_keypress(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles urlbox.KeyPress02 'When the user presses enter, Navigate to
03 ' the URL specified in the txtURL textbox.
04 If e.KeyChar = Chr(Keys.Return) Then
05 'Add "[URL="http:///"]http://[/URL]" to the beginning of the URL
06 If Not urlbox.Text.StartsWith("[URL="http:///"]http://[/URL]") Then
07 urlbox.Text = "[URL="http:///"]http://[/URL]" & urlbox.Text
08 End If
09 WebBrowser1.Navigate(urlbox.Text)
10 End If
11
12
13 End Sub