问候!
我创建了一个APSX Web表单,它根据一些提供的参数返回一个远程图像.它可以像这样使用:
<img src="/ImageGetter.aspx?param1=abc¶m2=123" />
<%@ OutputCache Duration="100000" VaryByParam="*" Location="ServerAndClient" %> <%@ Page Language="C#" AutoEventWireup="false" EnableSessionState="False" CodeBehind="ImageGetter.aspx.cs" Inherits="ACME.Helpers.ImageGetter" %>
此代码在ImageGetter.aspx的Page_Load方法中调用:
byte[] data = null; Dictionary<string,string> file_locations = GetImageLocations(param1,param2); try { data = new WebClient().DownloadData(file_locations["main"]); } catch (WebException wex) { try { data = new WebClient().DownloadData(file_locations["backup"]); } catch (Exception e) { throw; } } Response.ContentType = "image/jpeg"; Response.OutputStream.Write(data,data.Length); Response.End();
解决方法
尝试删除Response.End(),因为这将提前终止线程并阻止输出缓存发生.
见:http://bytes.com/groups/net-asp/323363-cache-varybyparam-doesnt-work
您可能希望考虑使用ASHX处理程序并使用自己的缓存方法.