I have made a sql database using sql server. This database include images. When I display this database in a datagrid, byte[]array displays in the image column. How do I con
Try
MemoryStream ms = new MemoryStream(imageBytes); Image image= Image.FromStream(ms);
take a look a this tutorial:
http://www.beansoftware.com/ASP.NET-Tutorials/Images-Database.aspx