aspx页面发布到IIS中
<iframe frameborder="0" scrolling="no" src="../BarCode.aspx" style="width: 630px; height: 600px;"></iframe>
在BarCode.aspx页面中我写一个button按钮事件
{
string imageUrl = Server.MapPath("~/Image/barcode.jpg");
BarCodeImage.Save(imageUrl, ImageFormat.Gif);
Image1.ImageUrl = "~/Image/barcode.jpg";
}
问题:为什么发布之后 我点击按钮 图片还是原来的图片,其实imageUrl已经是个新的图片了。而且,如果在页面中点右键刷新一下,也可以出现新的图片,但是点击button按钮就是不行。
急切请求大家帮忙~~
------解决方案--------------------图片的缓存
Image1.ImageUrl = "~/Image/barcode.jpg?id=" + Guid.NewGuid();