HttpHandler动态生成图片

在Web1站点下存一张图片1.gif:测试站点中的图片输出到Http响应输出流;

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;

namespace Web1
{
    /// <summary>
    /// ContentTypeTest 的摘要说明
    /// </summary>
    public class ContentTypeTest : IHttpHandler
    {

        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "image/gif";
            string FilePath = context.Server.MapPath("~/1.gif");
            using(Stream instream=File.OpenRead(FilePath))//new FileStream(....);
            {
                instream.CopyTo(context.Response.OutputStream);
            }
       
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}

1、浏览器不知道服务器上有1.gif的存在,浏览器只是,发请求,就收请求,显示图片,其他的就是一概不知~!!(这个要想明白!!)

posted @ 2015-05-30 07:02  t800  阅读(202)  评论(0编辑  收藏  举报