public FileContentResult getValidateCodeImg() { string code = MyUtils.CreateValidateNumber(4); Session["code"] = code.ToLower(); byte[] bytes = MyUtils.CreateValidateGraphic(code, 120, 38); return(File(bytes, @"image/jpeg")); }