zoukankan      html  css  js  c++  java
  • mvc 中kindeditor使用(cookie丢失问题)

    解决 ff cookie 丢失问题

    Global.asax 中:

         protected void Application_BeginRequest(object sender, EventArgs e)
            {
                var Request = HttpContext.Current.Request;
                var Response = HttpContext.Current.Response;
    
                try
                {
                    string auth_param_name = "AUTHID";
                    string auth_cookie_name = AppSettingManager.AppSettings["LoginCookieName"].ToString();   
    
                    if (HttpContext.Current.Request.Form[auth_param_name] != null)
                    {
                        UpdateCookie(auth_cookie_name, HttpContext.Current.Request.Form[auth_param_name]);
                    }
                    else if (HttpContext.Current.Request.QueryString[auth_param_name] != null)
                    {
                        UpdateCookie(auth_cookie_name, HttpContext.Current.Request.QueryString[auth_param_name]);
                    }
    
                }
                catch (Exception)
                {
                    Response.StatusCode = 500;
                    Response.Write("Error Initializing Session");
                }  
            }
    
            void UpdateCookie(string cookie_name, string cookie_value)
            {
                HttpCookie cookie = HttpContext.Current.Request.Cookies.Get(cookie_name);
                if (cookie == null)
                {
                    cookie = new HttpCookie(cookie_name);
                    //SWFUpload 的Demo中给的代码有问题,需要加上cookie.Expires 设置才可以
                    cookie.Expires = DateTime.Now.AddYears(1);
                    HttpContext.Current.Request.Cookies.Add(cookie);
                }
                cookie.Value = cookie_value;
                HttpContext.Current.Request.Cookies.Set(cookie);
            }

    前段调用js中:

    KindEditor.ready(function (K) {
        window.editor1 = K.create('#editor1', {
             500,
            height: 300,
            uploadJson: '../ImageUpload',
            allowFileManager: false,
            allowImageManager: true,
            afterCreate: function () {
                var self = this;
                K.ctrl(document, 13, function () {
                    self.sync();
                    //K('form[name=example]')[0].submit();
                });
                K.ctrl(self.edit.doc, 13, function () {
                    self.sync();
                    // K('form[name=example]')[0].submit();
                });
            },
            extraFileUploadParams: {
                "AUTHID": $("#Aid").val() //获取当前页面的隐藏域的cookie
            }
        });
        //prettyPrint();
      });


    cookie的值写在页面中,存在着安全隐患,各位大神可以多做指点!

  • 相关阅读:
    DM数据库disql的使用 Disql disql 达梦数据库Disql
    移动端禁止蒙层下的页面滚动
    移动端如何自动适配px
    使用Vant做移动端对图片预览ImagePreview和List的理解
    uniapp中使用uView组件库
    h5使用vuephotopreview 做全屏预览
    jsonview的实现
    PC端自适应使用rem 移动端适配升级版
    axios解决跨域问题(vuecli3.0)
    vs code 配置git path
  • 原文地址:https://www.cnblogs.com/WolfBlog/p/3853909.html
Copyright © 2011-2022 走看看