//生成随机字符串
private String GetRandomString(Int32 count)
{
StringBuilder sb = new StringBuilder();
for (Int32 i = 0; i <= count - 1; i++)
{
sb.Append(GetRandomChar(i + (int)DateTime.Now.Ticks));
...
04
2012
04
C# 验证码图片生成
发布:郑德才博客 | 分类:学习之路 | 评论:0 | 浏览: