欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp.net 生成数字和字母组合的随机数

程序员文章站 2024-03-09 18:05:35
复制代码 代码如下:private static char[] constant = { '0', '1', '2', '3', '4', '5', '6', '7', '...
复制代码 代码如下:

private static char[] constant = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };

public string pxkt_getcharfont(int strlength)
{
system.text.stringbuilder newrandom = new system.text.stringbuilder(62);
random rd= new random();
for(int i=0;i<strlength;i++)
{
newrandom.append(constant[rd.next(62)]);
}
return newrandom.tostring();
}