理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上【点击查看详情】
理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上:接口IHttpHandler的定义如下: 代码如下:interface IHttpHandler { void ProcessRequest(HttpContext ctx); bool IsReuseable { get; } 1新建一网站,名为MyHttpHandlerTest 2右击添加,选择类库,取名为MyHttpHandler 3