0

我想从数据库中检索图像并显示在 aspx 页面中。我使用 Linq 到 SQL。和一个通用处理程序。

Handler2.ashx 代码:

public void ProcessRequest(HttpContext context)
{
    if (context.Request.QueryString["id"] != null)
    {
        int id;
        string sid = context.Request.QueryString["id"];
        if (int.TryParse(sid, out id))
        {
            Stream strm = getImage(id);
            byte[] buffer = new byte[4096];
            int i = strm.Read(buffer, 0, 4096);
            while (i > 0)
            {
                context.Response.OutputStream.Write(buffer, 0, 4096);
                i = strm.Read(buffer, 0, 4096);
            }
        }
        else
        {
            //
        }

    }
}


public Stream getImage(int id)
{
    using (DummyDBEntities cntx = new DummyDBEntities())
    {
        var db = from c in cntx.Images
                    where c.imageId == id
                    select c.imageData;
        MemoryStream ms = new MemoryStream();
        byte[] byteArray = new byte[db.ToArray().Length];
        ms.Write(byteArray, 0, db.ToArray().Length);

        return new MemoryStream(byteArray);

    }
}

当我单击时,Default.aspx 页面中的按钮控件重定向到 handler1.ashx。从数据库中获取图像的 id 并应该在 Default.aspx asp:image 控件中显示它

protected void btnGetID_Click(object sender, EventArgs e)
{
  int id=Convert.ToInt32(txtGetID.Text);
  Response.Redirect("Handler2.ashx?id="+id);
  Image1.ImageUrl = '<%# "~/Handler2.ashx?id=" + Eval("imageData"); %>';
}

我应该如何编写 Eval 方法和查询字符串以将图像传递给 imageurl?

Image1.ImageUrl = '<%# "~/Handler2.ashx?id=" + Eval("imageData"); %>';

请帮忙,谢谢。

4

1 回答 1

0

我希望我能正确理解你的问题。您想在 Image1 中显示来自处理程序的图像。为此,您只需执行以下操作

Image1.ImageUrl = ResolveUrl("~/Handler2.ashx?id=" + id);
于 2014-07-09T13:39:01.903 回答