Code to generate English character and numeric verification code under asp.net

高洛峰
Release: 2017-01-13 14:36:18
Original
1141 people have browsed it

using System; 
using System.Data; 
using System.Configuration; 
using System.Web; 
using System.Web.Security; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Web.UI.WebControls.WebParts; 
using System.Web.UI.HtmlControls; 
using System.Drawing; 
using System.Drawing.Drawing2D; 

public partial class _Default : System.Web.UI.Page 
{ 
protected void Page_Load(object sender, EventArgs e) 
{ 

Bitmap bmp = new Bitmap(50, 25); 
Graphics g = Graphics.FromImage(bmp); 
SolidBrush sb = new SolidBrush(getColor()); 
g.DrawString(CheckNumber(), new Font("宋体", 16), sb, 0, 0); 
bmp.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Gif); 

} 
public static string CheckNumber() 
{ 
string checkcode = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; 
int len = 4; 
string tmpstr = ""; 
int iRandNum; 
Random rnd = new Random(); 
for (int i = 0; i < len; i++) 
{ 
iRandNum = rnd.Next(checkcode.Length); 
tmpstr += checkcode[iRandNum]; 
} 
return tmpstr; 
} 
private Color getColor() 
{ 
Random r = new Random(); 
return Color.FromArgb(r.Next(256), r.Next(256), r.Next(256)); 
} 
}
Copy after login

For more articles related to the code to generate English character and numeric verification codes under asp.net, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!