i have code like this:

VB Code:
  1. web1.Navigate ("http://bah.com")
  2.  
  3. Do
  4.   DoEvents
  5. Loop Until Not web1.Busy
  6. web1.Document.All("UserID").Value = Text1.Text
  7. web1.Document.All("Password").Value = Text2.Text
  8. web1.Document.Forms(0).submit

When i do this with a certain webpage it opens the new page after submit in a new IE page instead of web1. How can i have it open in my webone instead?