asp.net 读取数据库所有二进制图片并显示
我用的ashx来读取二进制图片从MySQL数据库,然后再aspx写的<imgsrc="display.ashx"/>来显示图片。但是我现在只想到读取一张图片,如何读取数据...
我用的ashx来读取二进制图片从MySQL数据库,然后再aspx写的<img src="display.ashx" />来显示图片。
但是我现在只想到读取一张图片,如何读取数据库中所有的图片并显示呢。
因为想不通,所以ashx中 只写的
SqlCommand("select [WishImage] from Wish where WishID=1", connection);//只读了ID1
byte[] image = (byte[])command.ExecuteScalar();
stream.Write(image, 0, image.Length);
Bitmap bitmap = new Bitmap(stream);
context.Response.ContentType = "image/jpeg";
bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
如何读取所有数据库中的二进制图片并显示呢,求代码- - 展开
但是我现在只想到读取一张图片,如何读取数据库中所有的图片并显示呢。
因为想不通,所以ashx中 只写的
SqlCommand("select [WishImage] from Wish where WishID=1", connection);//只读了ID1
byte[] image = (byte[])command.ExecuteScalar();
stream.Write(image, 0, image.Length);
Bitmap bitmap = new Bitmap(stream);
context.Response.ContentType = "image/jpeg";
bitmap.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
如何读取所有数据库中的二进制图片并显示呢,求代码- - 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询