我构建了提取存储在 SQL Server 中的图像的 ASHX 图像处理程序。如果我单独显示图像,它会很好地工作。但是如果我尝试在网格中显示它们并同时显示多张图片,则某些图片不会随机显示。
当我尝试刷新页面时,一些图像消失了,而另一些又出现了。它完全随机渲染图像。请参阅下图的 4 个屏幕截图。
以下是我的处理程序代码。我试图改变 IsReusable True & False,但没有运气。你能告诉我如何解决这个问题吗?谢谢。
public class Photo : IHttpHandler
{
#region IHttpHandler Members
public bool IsReusable
{
get { return true; }
}
public void ProcessRequest(HttpContext context)
{
HttpRequest request = context.Request;
if (!string.IsNullOrEmpty(request.QueryString["id"]) && !string.IsNullOrEmpty(request.QueryString["type"]))
{
//this hash table contain the SP parameter
DAMSSQL db = DAMSSQL.GetInstance("DBName");
SqlCommand cmd = new SqlCommand("dbo.GetImage");
cmd.Parameters.Add("@ID", SqlDbType.Int).Value = int.Parse(request.QueryString["id"]);
cmd.Parameters.Add("@Type", SqlDbType.Int).Value = int.Parse(request.QueryString["type"]);
object obj = db.ExecuteScalar(cmd);
if (obj != null)
{
byte[] imageArray = (byte[])obj;
//checking byte[]
if (imageArray != null && imageArray.Length > 0)
{
context.Response.ContentType = "image/jpeg";
context.Response.BinaryWrite(imageArray);
}
}
else
{
context.Response.StatusCode = 404;
context.Response.StatusDescription = "The requested image is not found in the system.";
context.Response.End();
}
}
else
{
context.Response.StatusCode = 500;
context.Response.StatusDescription = "The incoming parameters are not correct.";
context.Response.End();
}
}
#endregion
}