All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
visual c++在网页视图中的应用
SQL Server中, DateTime (日期)型操作的 SQL语法_[SQL Server教程]
用C#程序监控并显示CPU状态信息_.net资料_编程技术
SQL Server中如何用通配符搜索TEXT栏_[SQL Server教程]
SQLServer,2008跨数据库实例事务处理_mssql学习_编程技术
.Net中使用GDI+提高gif图片画质的代码_[Asp.Net教程]
VC++大数据量绘图时无闪烁刷屏技术实现_[Asp.Net教程]
delphi设置窗口范围
.NET,2.0,中对配置文件的读写_[Asp.Net教程]
浅谈PHP开发中MySQL数据库索引的经验_php资料_编程技术
Reading number is top 10 pictures
Play for Free show breast in a world of ice and snow
Go to the national museum2
yy365网站上的美女3
各种囧况!玩游戏最不喜欢出现的十件事
Absolutely shocked. National geographic 50 animal photographys6
网络游戏与脑残
锄禾日了几个人?
某某人向找小三的人宣战了
Household design comfortable contracted
青涩甜美-王祖贤小时候的旧照片曝光
Download software ranking
Dance with duck(male prostitution)
终极变速大师Speeder3.26
VeryCD电驴(EasyMule) V1.1.9 Build09081
塘西风月痕
WebService在.NET中的实战应用教学视频 → 第4集
超级战舰
VC++6.0培训教程
小黑猫大战两米大花蛇
少妇苏霞全本
The king of fighters 97(Mobile phone games-apk)
delv published in(发表于) 2014/1/6 9:02:15 Edit(编辑)
ASP.NET下生产图片验证码_[Asp.Net教程]

ASP.NET下生产图片验证码_[Asp.Net教程]

ASP.NET下生产图片验证码_[Asp.Net教程]

后台文件:


1using System;
2using System.Data;
3using System.Configuration;
4using System.Collections;
5using System.Drawing;
6using System.Web;
7using System.Web.Security;
8using System.Web.UI;
9using System.Web.UI.WebControls;
10using System.Web.UI.WebControls.WebParts;
11using System.Web.UI.HtmlControls;
12
13public partial class Default2 : System.Web.UI.Page
14{
15 protected void Page_Load(object sender, EventArgs e)
16 {
17 if(!this.IsPostBack)
18 {
19 this.GenImg(this.GenCode(4));
20 }
21
22 }
23 //产生随机字符串
24 private string GenCode(int num)
25 {
26 string[] source={"0","1","2","3","4","5","6","7","8","9",
27 "A","B","C","D","E","F","G","H","I","J","K","L","M","N",
28 "O","P","Q","R","S","T","U","V","W","X","Y","Z"};
29 string code="";
30 Random rd=new Random();
31 for(int i=0;i < num;i++)
32 {
33 code += source[rd.Next(0,source.Length)];
34 }
35 return code;
36 }
37
38 //生成图片
39 private void GenImg(string code)
40 {
41 Bitmap myPalette = new Bitmap(60, 20);//定义一个画板
42
43 Graphics gh = Graphics.FromImage(myPalette);//在画板上定义绘图的实例
44
45 Rectangle rc = new Rectangle(0, 0, 60, 20);//定义一个矩形
46
47 gh.FillRectangle(new SolidBrush(Color.Blue), rc);//填充矩形
48 gh.DrawString(code, new Font("宋体", 16), new SolidBrush(Color.White), rc);//在矩形内画出字符串
49
50 myPalette.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);//将图片显示出来
51
52 Session["ValidateCode"] = code;//将字符串保存到Session中,以便需要时进行验证
53
54 gh.Dispose();
55 myPalette.Dispose();
56 }
57
58}


  HTML文件:


  加入一个HTML控件Image即可


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>


来源:网络







添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.