消除图片在ie中缓存而无法更新的问题
2024-07-21 02:23:24
供稿:网友
程序中图片是动态显示的
原先把打算把图片保存在服务器端然后显示
可是由于ie的缓存问题导致图片无法实时更新显示
所以改为把图片存在session中然后再显示
需要保存的时候再保存到本地
//--------------chart.ashx.cs-------------------
using system;
using system.web.sessionstate;
using system.io;
using system.web;
namespace webapplication3
{
/// <summary>
/// chart 的摘要说明。
/// </summary>
public class charthandler : ihttphandler, ireadonlysessionstate
{
public bool isreusable
{
get { return true; }
}
public void processrequest (httpcontext ctx)
{
string chartid = ctx.request.querystring[0];
array arr = (array) ctx.session [chartid];
ctx.clearerror ();
ctx.response.expires = 0;
ctx.response.buffer = true;
ctx.response.clear ();
memorystream memstream = new memorystream ((byte[])arr);
memstream.writeto (ctx.response.outputstream);
memstream.close ();
ctx.response.contenttype = "image/gif";
ctx.response.statuscode = 400;
ctx.response.end ();
}
}
}
//--------------chart.ashx 只需要如下一行---------------
<% @ webhandler language="c#" class="webapplication3.charthandler" codebehind="chart.ashx.cs" %>
//webapplication3为命名空间
//charthandler为chart.ashx.cs中类的名字
//--------------调用说明-----------------
//需要把图片存到byte数组中 假设为bytearr 则
// ------------------------------------------------------------------------
//把图片储存在session里面
// ------------------------------------------------------------------------
httpcontext ctx = httpcontext.current;
string chartid = guid.newguid ().tostring ();
ctx.session [chartid] = bytearr;
image1.imageurl = string.concat ("chart.ashx?", chartid);