0

画像をバイナリ データとして SQL サーバー データベースに保存しています。これらの画像を Gridview に表示したいと思います。しかし、データベースからデータを直接読み取る Web コントロールがあります。Web イメージ コントロールにはImageUrlプロパティが必要なため、私のイメージはデータベースにあるため、これを使用できません。ただし、画像をフォルダーに保存することはできますが、データベースから画像データを直接読み取ってグリッドに表示する別の方法が必要です。

4

2 に答える 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

ブログが助けになるかもしれません http://hi.baidu.com/pxvddcbpbrbmqxq/item/3de72787e9e1c6eae496e098

于 2012-11-17T16:27:26.587 に答える