User-935300950 postedSystem.IO.FileStream FS = System.IO.File.Open("Image Path",System.IO.FileMode.Open);
byte[] bytes = new byte[FS.Length];
FS.Read(bytes, 0, bytes.Length);
FS.Close();
Response.BinaryWrite(bytes);
you can put this image any where in other pages by using html image control
<img scr="path of page that containing code">
Sorry for bringing up an old thread but I just wanted to say this (Ahmed Abu Daqqa's answer above) worked perfectly for me. It allowed me to display an image from a different hard drive than the one my IIS web service is on. Also I posted without quoting sorry.