FileStream fs = new FileStream(@"C:\winnt\Gone Fishing.BMP", FileMode.OpenOrCreate, FileAccess.Read);
byte[] MyData= new byte[fs.Length];
fs.Read(MyData, 0, System.Convert.ToInt32(fs.Length));
fs.Close();
then assign the byte array to a parameter, see http://groups.google.com/groups?selm=73986c9d.0112171321.214b0f7f%40posting.google.com&oe=UTF-8&output=gplain