生成验证码_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 生成验证码

生成验证码

 2013/12/19 12:09:14  xuganhua2012  博客园  我要评论(0)
  • 摘要://验证码stringcode=string.Empty;//用于生成验证码的字符集char[]character={'2','3','4','5','6','8','9','A','B','C','D','E','F','G','H','J','K','L','M','N','P','R','S','T','W','X','Y'};//生成随机数Randomrnd=newRandom();publicLoadPage(){InitializeComponent()
  • 标签:

//验证码
string code = string.Empty;
//用于生成验证码的字符集
char[] character = { '2', '3', '4', '5', '6', '8', '9',
'A', 'B', 'C', 'D', 'E', 'F', 'G',
'H', 'J','K', 'L', 'M', 'N', 'P',
'R', 'S', 'T', 'W', 'X', 'Y' };
//生成随机数
Random rnd = new Random();
public LoadPage()
{
InitializeComponent();
CreatCodeImage();
}
private void CreatCodeImage()
{
//生成验证码字符串
for (int i = 0; i < 4; i++)
{
if (i == 3)
{
code += character[rnd.Next(character.Length)];
}
else
{
code += character[rnd.Next(character.Length)];
code += " ";
}
}
//label_Code.Content = code;
}

private void label_Code_MouseDown(object sender, MouseButtonEventArgs e)
{
CreatCodeImage();
}

  • 相关文章
发表评论
用户名: 匿名