17-HttpHandler

在一次ASP.NET请求处理过程中,HttpHandler和HttpModule一样都可以截获的这个请求并做一些额外的工作。

他们的区别在于:

(1)对于HTTP请求而言,HttpModule是HTTP请求的“必经之路”,HttpModule可以有多个,每次HTTP请求都将逐一通过每个HttpModule。无论客户端请求什么类型文件,都会调用HttpModule。

(2)HttpHandler是请求的处理中心,按照你的请求生成响应的内容。可自定义什么情况下调用HttpHandler。

(3)ASP.Net处理请求时,使用(管道)方式,由各个HttpModule对请求进行处理,然后到达 HttpHandler,HttpHandler处理完之后,再交给HttpModule处理,最后将HTML发送到客户端浏览器中。HttpModule中的事件有的在HttpHandler之前,有的在之后。

一、HttpHandler实现验证码

0094.PNG

在项目中创建一般处理程序文件“ValidateImageHandle.ashx”。

<%@ WebHandler Language="C#" Class="ValidateImageHandle" %>
using System;
using System.Web;
using System.Drawing;
/*
HttpHandler中默认是不能使用Session的。
解决方法:
1、读取Session时:实现System.Web.SessionState.IReadOnlySessionState接口,无任何方法(只是一个标记作用)
2、保存Session时:实现System.Web.SessionState.IRequiresSessionState接口
 */
public class ValidateImageHandle : IHttpHandler, System.Web.SessionState.IRequiresSessionState
{
    
    public void ProcessRequest (HttpContext context) {
        //context.Response.ContentType = "text/plain";
        //context.Response.Write("Hello World");
        string strCode = CreateRnd();
        context.Session["validate"] = strCode;
        byte[] bytes = CreateImage(strCode);
        context.Response.ContentType = "image/gif";
        context.Response.BinaryWrite(bytes);
    }
    
    public bool IsReusable {
        get {
            return false;
        }
    }

    #region 生成随机验证码
    public string CreateRnd()
    {
        Random Rnd = new Random();
        string RndChars = "";
        char code;
        for (int i = 1; i <= 4; i++)
        {
            if (Rnd.Next() % 2 == 0) //偶数生成数字
            {
                code = (char)('0' + Rnd.Next(0, 10));
            }
            else //奇数生成字母
            {
                code = (char)('A' + Rnd.Next(0, 10));
            }
            RndChars = RndChars + code.ToString();
        }
        return RndChars;
    }
    #endregion

    #region 将验证码生成图片
    public byte[] CreateImage(string RndChars)
    {
        Random Rnd = new Random();
        System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(RndChars.Length * 15, 26);
        Graphics g = Graphics.FromImage(bitmap);
        g.Clear(Color.Gray); //清空图片,设置背景为灰色
        //画图片噪线
        for (int i = 1; i <= Rnd.Next(10, 30); i++)
        {
            int x1 = Rnd.Next(1, bitmap.Width);
            int x2 = Rnd.Next(1, bitmap.Width);
            int y1 = Rnd.Next(1, bitmap.Height);
            int y2 = Rnd.Next(1, bitmap.Height);
            g.DrawLine(new Pen(Color.Green), x1, y1, x2, y2);
        }
        //画验证码字符串
        Font font = new Font("微软雅黑", 12, (FontStyle.Bold | FontStyle.Italic));
        System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new RectangleF(0, 0, bitmap.Width, bitmap.Height), Color.Red, Color.Blue, 1.2f, true);
        g.DrawString(RndChars, font, brush, 2, 2);
        //画图片噪点
        for (int i = 0; i <= Rnd.Next(50, 100); i++)
        {
            int x = Rnd.Next(1, bitmap.Width);
            int y = Rnd.Next(1, bitmap.Height);
            bitmap.SetPixel(x, y, Color.Red);
        }
        //画图片边框线
        g.DrawRectangle(new Pen(Color.Black), 0, 0, bitmap.Width - 1, bitmap.Height - 1);
        System.IO.MemoryStream ms = new System.IO.MemoryStream();
        bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        return ms.ToArray();
    }
    #endregion
}

用户登录使用验证码:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>httpHandler实现验证码</title>
    <script src="js/jquery.js" type="text/javascript"></script>
    <style type="text/css">
        #container{ text-align:center;}
        .righttd
        {
            width: 460px;
        }
        .lefted
        {
            width: 196px;
        }
        .mytitle{ font-size:18px; font-weight:bold;}
    </style>
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript">
        //alert(new Date());
        $(function () {
            $("#Refresh").click(function () {
                $("#imgValidate").prop("src", "ValidateImageHandle.ashx?date=" + new Date());
            })
        })
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <h1>httpHandler实现验证码-先复习之前案例中验证码的实现</h1>
        <table>
            <tr>
                <td align="center" height="30" class="mytitle" colspan="2">用户登录</td>
            </tr>
            <tr>
                <td align="right" class="lefted" height="30">用户名:</td>
                <td align="left" class="righttd" height="30">
                    <asp:TextBox ID="txtAccount" runat="server"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td align="right" class="lefted" height="30">密码:</td>
                <td align="left" class="righttd" height="30">
                    <asp:TextBox ID="txtPwd" runat="server" TextMode="Password"></asp:TextBox>
                </td>
            </tr>
            <tr>
                <td align="right" class="lefted" height="30">验证码:</td>
                <td align="left" class="righttd" height="30">
                    <asp:TextBox ID="txtValidate" runat="server" Width="72px"></asp:TextBox>
                    <asp:Image ID="imgValidate" runat="server" ImageUrl="~/ValidateImageHandle.ashx" />
                        <a href="javascript:void(0);" id="Refresh">刷新</a>
                </td>
            </tr>
            <tr>
                <td align="right" class="lefted" height="30"></td>
                <td align="left" class="righttd" height="30">
                    <asp:Button ID="btLogin" runat="server" Text="登  录" onclick="btLogin_Click" />
                </td>
            </tr>
            <tr>
                <td align="right" class="lefted" height="30"></td>
                <td align="left" class="righttd" height="30">
                    <asp:Label ID="lblErrInfo" runat="server" ForeColor="Red"></asp:Label>
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>
public partial class Demo01 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    #region 登录
    protected void btLogin_Click(object sender, EventArgs e)
    {
        if (Session["validate"] == null)
        {
            this.lblErrInfo.Text = "验证码过期";
            this.imgValidate.ImageUrl = "~/ValidateImageHandle.ashx"; //加载验证码
            return;
        }
        if (this.txtValidate.Text.Equals(Session["validate"].ToString()) == false)
        {
            this.lblErrInfo.Text = "验证码错误!";
        }
        else
        {
            this.lblErrInfo.Text = "验证码正确";
        }
    }
    #endregion
}

二、HttpHandler实现图片水印

HttpHandler实现图片水印在此文中有两种方式来实现:

(1)创建ashx文件进行二次绘图,C#程序中调用ashx文件实现水印添加。

(2)创建CS类文件进行二次绘图,通过配置文件配置路径规则给指定路径下的文件实现水印添加。

方案一

在项目中创建一般处理程序文件“ImgHandler.ashx”。

<%@ WebHandler Language="C#" Class="ImgHandler" %>
using System;
using System.Web;
using System.Drawing;
public class ImgHandler : IHttpHandler { 
    public void ProcessRequest (HttpContext context) {
        //context.Response.ContentType = "text/plain";
        //context.Response.Write("Hello World");
        string vpath = context.Request.QueryString["ImageUrl"]; //虚拟路径
        string ppath = context.Server.MapPath(vpath); //根据虚拟路径获得物理路径
        Image img = Image.FromFile(ppath);   //根据绝对路径获取图片
        Graphics gh = Graphics.FromImage(img);  //绘画对象
        Image imgWaterMark = Image.FromFile(context.Server.MapPath("~/img/watermark.png"));
        float w = img.Width;
        float h = img.Height;
        float x = 6;
        float y = 6;
        gh.DrawImage(imgWaterMark, x, y, w, h);  //进行二次绘图
        context.Response.ContentType = "image/jpeg";
        img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
    }
 
    public bool IsReusable {
        get {
            return false;
        }
    }
}

页面中实现图片水印:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>httpHandle给图片添加水印</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Panel ID="pnlImages" runat="server">
            <asp:Image ID="Image2" runat="server" Width="200" Height="240" ImageUrl="~/img/book/5566e4b4Nb156fe14.jpg" />
            <asp:Image ID="Image3" runat="server" Width="200" Height="240" ImageUrl="~/img/book/5573e4b4Nb1561288.jpg" />
            <asp:Image ID="Image5" runat="server" Width="200" Height="240" ImageUrl="~/img/book/55b8a409N20918431.jpg" />
            <asp:Image ID="Image6" runat="server" Width="200" Height="240" ImageUrl="~/img/book/9787020096466.jpg" />
            <asp:Image ID="Image7" runat="server" Width="200" Height="240" ImageUrl="~/img/book/9787020096473.jpg" />
        </asp:Panel>        
    </div>
    </form>
</body>
</html>
public partial class Demo02 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        foreach (Control obj in pnlImages.Controls)
        {
            Image img = obj as Image;
            if (img != null)
            {
                string imgurl = img.ImageUrl;
                img.ImageUrl = "~/ImgHandler.ashx?ImageUrl=" + Server.UrlEncode(imgurl);
            }
        }
    }
}

方案二

在App_Code文件夹创建“MyImgHandler.cs”文件。

public class MyImgHandler:IHttpHandler
{
    public void ProcessRequest(HttpContext context)
    {
        //context.Response.ContentType = "text/plain";
        //context.Response.Write("Hello World");
        string vpath = context.Request.Path; //获取配置文件中配置的路径
        string ppath = context.Server.MapPath(vpath); //根据虚拟路径获得物理路径
        Image img = Image.FromFile(ppath);   //根据绝对路径获取图片
        Graphics gh = Graphics.FromImage(img);  //绘画对象
        Image imgWaterMark = Image.FromFile(context.Server.MapPath("~/img/watermark.png"));
        float w = img.Width;
        float h = img.Height;
        float x = 6;
        float y = 6;
        gh.DrawImage(imgWaterMark, x, y, w, h);  //进行二次绘图
        //context.Response.ContentType = "image/jpeg";
        img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
    }

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

根目录web.config配置文件:

<?xml version="1.0"?>
<!--
  有关如何配置 ASP.NET 应用程序的详细信息,请访问
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0"/>
        <!--IIS6配置-->
        <httpHandlers>
            <add type="MyImgHandler" path="img/book/*.*" verb="*"/>
        </httpHandlers>
    </system.web>
    <!--IIS7配置-->
    <!--<system.webServer>
    <handlers>
      <add name="MyImgHandler" path="img/book/*.*" type="MyImgHandler" verb="*"/>
    </handlers>
  </system.webServer>-->
</configuration>

页面测试水印效果:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>httpHandle给图片添加水印-将Handle写在类文件中用配置文件来调用</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
         <asp:Panel ID="pnlImages" runat="server">
            <asp:Image ID="Image2" runat="server" Width="200" Height="240" ImageUrl="~/img/book/5566e4b4Nb156fe14.jpg" />
            <asp:Image ID="Image3" runat="server" Width="200" Height="240" ImageUrl="~/img/book/5573e4b4Nb1561288.jpg" />
            <asp:Image ID="Image5" runat="server" Width="200" Height="240" ImageUrl="~/img/book/55b8a409N20918431.jpg" />
            <asp:Image ID="Image6" runat="server" Width="200" Height="240" ImageUrl="~/img/book/9787020096466.jpg" />
            <asp:Image ID="Image7" runat="server" Width="200" Height="240" ImageUrl="~/img/book/9787020096473.jpg" />
        </asp:Panel>       
    </div>
    <div>
        <asp:Image ID="Image1" runat="server" Width="200" Height="240" ImageUrl="~/img/nba/lunnade.jpg" />
        <asp:Image ID="Image4" runat="server" Width="200" Height="240" ImageUrl="~/img/nba/maidi.jpg" />
        <asp:Image ID="Image8" runat="server" Width="200" Height="240" ImageUrl="~/img/nba/nashi.jpg" />
    </div>
    </form>
</body>
</html>
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容

  • ASP.NET是使用HTML、CSS、JS和服务端脚本创建Web页面和网站的开发框架。 ASP.NET支持三种开发...
    JunChow520阅读 1,662评论 0 2
  • 目录本次给大家介绍的是我收集以及自己个人保存一些.NET面试题简介1.C# 值类型和引用类型的区别2.如何使得一个...
    寒剑飘零阅读 4,809评论 0 30
  • ASP.NET MVC 是建立在 ASP.NET 平台上基于 MVC 模式的 Web 应用框架,深刻理解 ASP....
    JunChow520阅读 1,826评论 0 7
  • ASP.NET MVC是如何运行的 ASP.NET MVC由于采用了管道式设计,所以具有很好的扩展性,整个ASP....
    JunChow520阅读 365评论 0 0
  • 1 Asp.Net中的处理流程 当客户端请求一个*文件的时候,这个请求会被inetinfo.exe(IIS相关的系...
    无为无味无心阅读 3,494评论 0 1