Hey I am havin some trouble loading an image from my sql db into a image on my form....

Using this code I got from the codebank:

vb Code:
  1. Dim connection As New SqlConnection("blahblah")
  2.  
  3.         Dim command As New SqlCommand("SELECT ImageData FROM Style_Images WHERE ImageID = 1", connection)
  4.  
  5.         connection.Open()
  6.  
  7.         Dim pictureData As Byte() = DirectCast(command.ExecuteScalar(), Byte())
  8.  
  9.         connection.Close()
  10.         Dim picture As Image = Nothing
  11.  
  12.         Using stream As New IO.MemoryStream(pictureData)
  13.             picture = Image.FromStream(stream)
  14.         End Using

When I try to assign picture to my Image control I get this message in the error list:

Value of type 'System.Drawing.Image' cannot be converted to 'System.Web.UI.WebControls.Image'

Am I completely off on the way to to do this?