在asp.net数据库检索图像(Retrieve image from database in as

2019-07-20 02:39发布

如何使用C#来检索SQL数据库的图像在asp.net。

我想从数据库中获取的图像文件,然后在标签显示的图像。

我尝试这种代码,但它无法正常工作

ASPX

 <asp:Image ID="Image1" runat="server" ImageUrl="" Height="150px" Width="165px" />

后面的代码

 Byte[] bytes = (Byte[])ds.Tables[0].Rows[0]["image"];
 Response.Buffer = true;
 Response.Charset = "";
 Response.Cache.SetCacheability(HttpCacheability.NoCache);
 Response.ContentType = "image/jpg";
 Response.BinaryWrite(bytes);
 Response.Flush();
 Response.End();

如何给链接ImageUrl=""这一形象的???

Answer 1:

创建一个generic http handler如下

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["EmployeeConnString"].ConnectionString;
         SqlConnection connection = new SqlConnection(conn);
         string sql = "SELECT empimg FROM EmpDetails 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();
       }
    }

    public bool IsReusable
    {
        get
        {
             return false;
        }
    }


}

和显示图像作为遵循

 Image1.ImageUrl = "~/ShowImage.ashx?id=" + id;

下面有一些链接
显示图像中的GridView从数据库?
如何显示在数据库的Asp.net图像控制一个形象?
从数据库在ASP.net显示图像用C#
http://www.dotnetcurry.com/ShowArticle.aspx?ID=129



Answer 2:

我不认为这是正确的做法。 你不应该嵌入图像转换成HTML,这无论如何不是正确的方式。

我建议增加一个ASHX(通用处理器),并用它来生成查询字符串的图像,然后INI页面使用类似

<asp:Image ImageUrl='GetImage.ashx?id=12345' ... />


文章来源: Retrieve image from database in asp.net