Function GetHtml(ByVal url As String, ByRef web As WebBrowser) As String
Dim WebString As String
Dim myURI As New Uri(url)
web.Url = myURI
WebString = web.Document.Body.InnerHtml
Return WebString
End Function

System.NullReferenceException!!!
AS Above !! How to solve it!! Thank!!