欢迎光临
我们一直在努力

消除图片在ie中缓存而无法更新的问题-.NET教程,数据库应用

建站超值云服务器,限时71元/月

程序中图片是动态显示的

原先把打算把图片保存在服务器端然后显示

可是由于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);

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 消除图片在ie中缓存而无法更新的问题-.NET教程,数据库应用
分享到: 更多 (0)