3 回答

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊
您可以編寫一個(gè)通用的處理程序來(lái)處理圖片:
<%@ WebHandler Language="C#" Class="Picture" %>
public class Picture : System.Web.IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
byte[] buffer = GetPictureFromSomewhere();
context.Response.ContentType = "image/jpeg";
context.Response.OutputStream.Write(buffer, 0, buffer.Length);
}
public bool IsReusable
{
get { return false; }
}
}
然后在aspx頁(yè)面中調(diào)用它:
<asp:Image ID="pic" runat="server" ImageUrl="~/Picture.ashx" />
- 3 回答
- 0 關(guān)注
- 491 瀏覽
添加回答
舉報(bào)