예제 #1
0
파일: Model_SYS_USER.cs 프로젝트: wpmyj/six
        /// <summary>
        /// 生成验证码
        /// </summary>
        /// <returns></returns>
        public static byte[] GenerateValidateCode()
        {
            //首先实例化验证码的类
            KenceryValidateCode validateCode = new KenceryValidateCode();
            //生成验证码指定的长度
            string code = validateCode.CreateValidateCode(5);

            //string code = "11111";
            //将验证码赋值给Session变量
            //Session["ValidateCode"] = code;
            oc.CurrentUserVcode = code;
            //创建验证码的图片
            byte[] bytes = validateCode.CreateValidateGraphic(code);
            return(bytes);
            //最后将验证码返回
            //return File(bytes, @"image/jpeg");
        }
예제 #2
0
        /// <summary>

        /// 验证码的实现

        /// </summary>

        /// <returns></returns>

        public ActionResult CheckCode()

        {
            //首先实例化验证码的类

            KenceryValidateCode validateCode = new KenceryValidateCode();

            //生成验证码指定的长度

            string code = validateCode.CreateValidateCode(5);

            //将验证码赋值给Session变量

            Session["ValidateCode"] = code;

            //创建验证码的图片

            byte[] bytes = validateCode.CreateValidateGraphic(code);

            //最后将验证码返回

            return(File(bytes, @"image/jpeg"));
        }