Example #1
0
        public ActionResult VerificationCode()
        {
            string verificationCode = RandomHelper.CreateVerificationText(4);
            Bitmap img = ImageHelper.CreateVerificationImage(verificationCode, 65, 30);

            img.Save(Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
            TempData["VerificationCode"] = verificationCode.ToUpper();
            return(null);
        }