我将图像作为二进制数据保存在 SQL Server 数据库中。现在我想在 Gridview 中显示这些图像。但是有直接从数据库中读取数据的web控件。Web 图像控件需要ImageUrl
属性,因此不能使用它,因为我的图像在数据库中。但是我可以将图像存储在一个文件夹中,但我想要一些不同的方式直接从数据库中读取图像数据并显示在网格中。
问问题
6335 次
2 回答
2
使用通用处理程序,您可以将二进制数据转换为图像并显示它
代码:
设置图片控件url为
Image1.ImageUrl = "~/ShowImage.ashx?id=" + id;
其中 ShowImage.ashx 是一个通用处理程序文件。
using System;
using System.Configuration;
using System.Web;
using System.IO;
using System.Data;
using System.Data.SqlClient;
public class ShowImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
Int32 empno;
if (context.Request.QueryString["id"] != null)
empno = Convert.ToInt32(context.Request.QueryString["id"]);
else
throw new ArgumentException("No parameter specified");
context.Response.ContentType = "image/jpeg";
Stream strm = ShowEmpImage(empno);
byte[] buffer = new byte[4096];
int byteSeq = strm.Read(buffer, 0, 4096);
while (byteSeq > 0)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 4096);
}
//context.Response.BinaryWrite(buffer);
}
public Stream ShowEmpImage(int empno)
{
string conn = ConfigurationManager.ConnectionStrings["ConnString"].ConnectionString;
SqlConnection connection = new SqlConnection(conn);
string sql = "SELECT* FROM table WHERE empid = @ID";
SqlCommand cmd = new SqlCommand(sql,connection);
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@ID", empno);
connection.Open();
object img = cmd.ExecuteScalar();
try
{
return new MemoryStream((byte[])img);
}
catch
{
return null;
}
finally
{
connection.Close();
}
}
}
于 2012-11-19T12:16:30.740 回答
0
于 2012-11-17T16:27:26.587 回答