摘要: // 随机生成指定长度的验证码字符串 public ActionResult GetValidateCode(string key) { string codeStr = GetRandomCode(); TempData[key] = codeStr; return File(GetVCo... 阅读全文
posted @ 2018-12-27 09:51 码到世界末日 阅读(156) 评论(0) 推荐(0)