asp.Net 一些常用的方法和类(3)

来源:未知 责任编辑:责任编辑 发表时间:2013-11-17 14:40 点击:

            System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(new Rectangle(0, 0, image.Width, image.Height), Color.Blue, Color.DarkRed, 1.2f, true); 
            g.DrawString(checkCode, font, brush, 2, 2); 
 
            //画图片的前景噪音点 
            for (int i = 0; i < 60; i++) 
            { 
                int x = random.Next(image.Width); 
                int y = random.Next(image.Height); 
 
                image.SetPixel(x, y, Color.FromArgb(random.Next())); 
            } 
 
            //画图片的边框线 
            g.DrawRectangle(new Pen(Color.Silver), 0, 0, image.Width - 1, image.Height - 1); 
            System.IO.MemoryStream ms = new System.IO.MemoryStream(); 
            image.Save(ms, System.Drawing.Imaging.ImageFormat.Gif); 
            Response.ClearContent(); 
            Response.ContentType = "image/Gif"; 
            Response.BinaryWrite(ms.ToArray()); 
        } 
        finally 
        { 
            g.Dispose(); 
            image.Dispose(); 
        } 
    } 
 
    #endregion 
 
 

清空缓存:


//清空客户端页面缓存 
public static void ClearClientPageCache() 

    HttpContext.Current.Response.Buffer = true; 
    HttpContext.Current.Response.Expires = 0; 
    HttpContext.Current.Response.ExpiresAbsolute = DateTime.Now.AddDays(-1); 
    HttpContext.Current.Response.AddHeader("pragma", "no-cache"); 

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • 浅析.NET下XML数据访问新机制
  • asp.net 面试+笔试题目第1/2页
  • C# 邮件地址是否合法的验证
  • C#高级编程:数据库连接[1]
  • asp.net 设置GridView的选中行的实现代码
  • 经典C++程序1
  • IIS 自动回收导致后台定时器失效的问题解决
  • ASP.NET&#160;GridView列表代码示例
  • 微软ASP.NET站点部署指南(3):使用Web.Config文件的Transforma
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1