I have blob data's approx 85000 images i am generating it from handler and stored in to database as image datatype now when i render it into a webpage it working very slow obviously so i want to find some middle solution for this one probably cache i think its a best solution for me so can any one give me some idea about this one my code looks like this
public void ProcessRequest(HttpContext context)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 8192);
}
and image
<img src='<%# "handler/product?"+Email.Encryptdes(DataBinder.Eval(Container.DataItem,"product_id").ToString()) %>'/>
so what to do now i can not see my page loading at 30 seconds Should i go for folder option for images?