The Cookie and Session

public static class CookieSessionHelper
    {
        public static void SetCookies(this HttpContext httpContext, string key, string value.int minutes = 30)
        {
            httpContext.Response.Cookies.Append(key, value.new CookieOptions
            {
                Expires = DateTime.Now.AddMinutes(minutes)
            });
        }
        public static void DeleteCookies(this HttpContext httpContext, string key)
        {
            httpContext.Response.Cookies.Delete(key);
        }

        public static string GetCookiesValue(this HttpContext httpContext, string key)
        {
            httpContext.Request.Cookies.TryGetValue(key, out string value);
            return value;
        }

        public static CurrentUser GetCurrentUserBySession(this HttpContext context)
        {
            string sUser = context.Session.GetString("CurrentUser");
            if (sUser == null)
            {
                return null;
            }
            else
            {
                CurrentUser currentUser = Newtonsoft.Json.JsonConvert.DeserializeObject<CurrentUser>(sUser);
                returncurrentUser; }}}Copy the code

Verification code

public class VerifyCodeHelper
    {
        public static Bitmap CreateVerifyCode(out string code)
        {
            // Create a Bitmap object and draw it
            Bitmap bitmap = new Bitmap(200.60);
            Graphics graph = Graphics.FromImage(bitmap);
            graph.FillRectangle(new SolidBrush(Color.White), 0.0.200.60);
            Font font = new Font(FontFamily.GenericSerif, 48, FontStyle.Bold, GraphicsUnit.Pixel);
            Random r = new Random();
            string letters = "ABCDEFGHIJKLMNPQRSTUVWXYZ0123456789";

            StringBuilder sb = new StringBuilder();

            // Add random five letters
            for (int x = 0; x < 5; x++)
            {
                string letter = letters.Substring(r.Next(0, letters.Length - 1), 1);
                sb.Append(letter);
                graph.DrawString(letter, font, new SolidBrush(Color.Black), x * 38, r.Next(0.15));
            }
            code = sb.ToString();

            // Obfuscate the background
            Pen linePen = new Pen(new SolidBrush(Color.Black), 2);
            for (int x = 0; x < 6; x++)
                graph.DrawLine(linePen, new Point(r.Next(0.199), r.Next(0.59)), new Point(r.Next(0.199), r.Next(0.59)));
            returnbitmap; }}Copy the code
public ActionResult VerifyCode()
{
    string code = "";
    Bitmap bitmap = VerifyCodeHelper.CreateVerifyCode(out code);
    base.HttpContext.Session.SetString("CheckCode", code);
    MemoryStream stream = new MemoryStream();
    bitmap.Save(stream, ImageFormat.Gif);
    return File(stream.ToArray(), "image/gif");
}
Copy the code