问候!
我创建了一个 APSX Web 表单,它根据一些提供的参数返回一个远程图像。它可以这样使用:
<img src="/ImageGetter.aspx?param1=abc¶m2=123" />
ImageGetter.aspx 的标记和代码如下所示:
<%@ 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, 0, data.Length);
Response.End();
根据我的测试,它似乎没有缓存。这可能与输出缓存有关,还是我应该根据查询字符串参数编写自己的缓存来存储字节数组?