Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim Button2 As Button
Dim WebView1 As WebView
End Sub
Sub Button2_Click
WebView1.LoadUrl("javascript:alert('Hello World')")
End Sub