hi can someone help me out with this, i'm loading a webpage with the webbrowser control and then checking the HTML source for the work "server2update" if present some other coding is processed. My problem is that it's not detecting 'server2update'

VB Code:
  1. Dim sDoc As String
  2.       sDoc = WebBrowser1.Document
  3.                                                                                      
  4. If InStr(sDoc, "server2update") > 0 Then
  5. ... 'looking to see if server2update is present in the HTML coding
  6. ...