在ASP.NET 3.5应用程序中,我创建了一个ashx处理程序,如下所示:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using System.Web.Services;
namespace TestWebConfig
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class Handler1 : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/jpg";
BinaryReader br = new BinaryReader(File.Open( @"d:\Temp\images\AutumnLeaves.jpg", FileMode.Open ));
int bufferLength = 1000;
do
{
byte[] buffer = br.ReadBytes(bufferLength);
context.Response.OutputStream.Write(buffer, 0, buffer.Length);
if (buffer.Length < bufferLength)
{
break;
}
} while (true);
br.Close();
}
public bool IsReusable
{
get
{
return true;
}
}
}
}
在aspx页面中,如果我指定:
<img alt="alt2" src="Handler1.ashx" style="border-width:0px"/>
然后将网页与图像一起加载到浏览器中。另一方面,如果我使用:
<asp:Image ID="Image2" runat="server" />
和代码隐藏:
protected void Page_Load(object sender, EventArgs e)
{
Image2.ImageUrl = "Handler1.asxh";
}
然后Image2控件不加载图片,尽管相关的html代码看起来很相似。仅显示替代文字。怎么了?
由于
答案 0 :(得分:1)
对于你的Page_Load中的一件事,看起来你已经给它错误的扩展名,但我认为这不是问题。