我构建了ASHX Image Handler,它提取存储在SQL Server中的图像。如果我单独显示图像,它的工作效果很好。但是,如果我尝试在网格中显示它们并同时显示许多图片,则某些图片不会随机显示。
当我尝试刷新页面时,某些图像会消失,而某些图像会再次出现。它完全呈现图像随机。请参阅下面的图片以获取4个屏幕截图。
以下是我的Handler代码。我试图改变IsReusable True&错,但没有运气。你能告诉我如何解决这个问题吗?感谢。
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
}
答案 0 :(得分:1)