Having trouble with real simple script

ok i am making a webbrowser application and i want to use del.icio.us as my favorites.
I am trying to make it to where when you click the Favorites button it takes you to del.icio.us.
Here is my code:

PrivateSub Button8_Click(ByVal senderAs System.Object,ByVal eAs System.EventArgs)Handles favorites.Click

http://del.icio.us/ziph

EndSub

That looks good to me what the heck is wrong? I am a noob at VB.

[1013 byte] By [Cheesywillie] at [2007-12-17]
# 1
Assuming that wb is your webBrowser control in the following example:

wb.Navigate = http://del.icio.us/ziph

Happy surfing!

ReneeC at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...
# 2
Don't forget to enclose the URL in quotes, or you will get a "Name 'http' is not declared" error.

wb.Navigate(" http://www.microsoft.com/vbasic")

shoagMSFT at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual Basic 2005 Express Edition...