public static string GetCaptcha() { string key = GetKeyOfCaptcha(); return(CookieUtil.GetCookie(key) ?? string.Empty); }
public static void ClearCaptcha() { CookieUtil.RemoveCookie(GetKeyOfCaptcha()); }