解决uploadify使用时session发生丢失问题的方法

今天在使用uploadify时发现session会发生丢失的情况,经过一番研究发现,其丢失并不是真正的丢失,而是在使用Flash上传控件的时候使用的session机制和asp.net中的不相同。为解决这个问题使用两种方案,下面进行介绍

第一种:修改Gobal
前台aspx页面:

$("#uploadify").uploadify({
        'uploader': '/LZKS/Handler/BigFileUpLoadHandler.ashx',
        'swf': '/LZKS/Scripts/uploadify/uploadify.swf',
        'cancelImage': '/LZKS/Scripts/uploadify/cancel.png',
        'queueID': 'fileQueue',
        //'auto': false,
        'multi': true,
        'buttonText': '文件上传',
        'formData': { 'ASPSESSID': ASPSESSID, 'AUTHID': auth },
        'onSelect': function (file) {
          $('#uploadify').uploadifySettings('formData', { 'ASPSESSID': ASPSESSID, 'AUTHID': auth });
          alert(formDate);
        },
        'onComplete': function (file, data, response) {
        }, 

        'onQueueComplete': function () {
          alert("上传完成!");
          $('#fileQueue').attr('style', 'visibility :hidden');
        },
        'onSelectError': function (file, errorCode, errorMsg) {
          $('#fileQueue').attr('style', 'visibility :hidden');
        },
        'onUploadStart': function (file) {
          $('#fileQueue').attr('style', 'top:200px;left:400px;width:400px;height :400px;visibility :visible');
        }
      });
    });

接着修改Gobal中的代码:

protected void Application_BeginRequest(object sender, EventArgs e)
    {
      /* we guess at this point session is not already retrieved by application so we recreate cookie with the session id... */
      try
      {
        string session_param_name = "ASPSESSID";
        string session_cookie_name = "ASP.NET_SessionId"; 

        if (HttpContext.Current.Request.Form[session_param_name] != null)
        {
          UpdateCookie(session_cookie_name, HttpContext.Current.Request.Form[session_param_name]);
        }
        else if (HttpContext.Current.Request.QueryString[session_param_name] != null)
        {
          UpdateCookie(session_cookie_name, HttpContext.Current.Request.QueryString[session_param_name]);
        }
      }
      catch
      {
      } 

      try
      {
        string auth_param_name = "AUTHID";
        string auth_cookie_name = FormsAuthentication.FormsCookieName; 

        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
      {
      }
    } 

    private void UpdateCookie(string cookie_name, string cookie_value)
    {
      HttpCookie cookie = HttpContext.Current.Request.Cookies.Get(cookie_name);
      if (null == cookie)
      {
        cookie = new HttpCookie(cookie_name);
      }
      cookie.Value = cookie_value;
      HttpContext.Current.Request.Cookies.Set(cookie);
    }

在JS加载前面定义下面两个变量

var auth = "<% = Request.Cookies[FormsAuthentication.FormsCookieName]==null ? string.Empty : Request.Cookies[FormsAuthentication.FormsCookieName].Value %>";
 var ASPSESSID = "<%= Session.SessionID %>";

Handler文件代码如下:

 public class BigFileUpLoadHandler : IHttpHandler, IRequiresSessionState
  {
    DALFile Fdal = new DALFile();
    public void ProcessRequest(HttpContext context)
    {
      context.Response.ContentType = "text/plain";
      VideoUpLoad(context, CLSOFT.Web.LZKS.Edu.Globe.filename);
    }
    public void VideoUpLoad(HttpContext context, string fileFolderName)
    {
      context.Response.Charset = "utf-8";
      string aaaaaaa=context.Request.QueryString["sessionid"];
      HttpPostedFile file = context.Request.Files["Filedata"];
      string uploadPath = HttpContext.Current.Server.MapPath(UploadFileCommon.CreateDir(fileFolderName));
      if (file != null)
      {
        if (!Directory.Exists(uploadPath))
        {
          Directory.CreateDirectory(uploadPath);
        }
        Model.ModelFile model = new Model.ModelFile();
        model.File_ID = Guid.NewGuid().ToString();
        model.File_Name = file.FileName;
        model.File_Path = UploadFileCommon.CreateDir(fileFolderName);
        model.File_Size = file.ContentLength;
        model.File_Extension = file.FileName.Substring(file.FileName.LastIndexOf('.') + 1);
        model.File_Date = DateTime.Now;
        model.File_CurrentMan = CLSOFT.Web.LZKS.Edu.Globe.name;
        file.SaveAs(uploadPath + model.File_Name); 

        List<Model.ModelFile> list = null;
        if (context.Session["File"] == null)
        {
          list = new List<Model.ModelFile>();
        }
        else
        {
          list = context.Session["File"] as List<Model.ModelFile>;
        }
        list.Add(model);
        context.Session.Add("File", list);
      }
      else
      {
        context.Response.Write("0");
      }
    }

这段代码的功能是将多文件的信息存到context.Session["File"] as List<Model.ModelFileModel.ModelFile>为文件信息类 实现批量上传的信息给Session 
第二种方案:直接向后台传递session值

Ext.onReady(function () {
    Ext.QuickTips.init();
    <%--JQuery装载函数--%>
      $("#uploadify").uploadify({
        'uploader': '../Uploadify-v2.1.4/uploadify.swf',//上传swf相对路径
        'script': '../Service/FileUploadHelper.ashx',//后台上传处理呈现
        'cancelImg': '../Uploadify-v2.1.4/cancel.png',//取消上传按钮相对路径
        'checkExisting':true,//服务端重复文件检测
        'folder': '../UploadFile/',//上传目录
        'fileExt':'*.jpg;*.png;*.gif;*.bmp',//允许上传的文件格式
        'fileDesc':'jpg、png、gif、bmp',//文件选择时显示的提示
        'queueID': 'fileQueue',//上传容器
        'auto': false,
        'multi': false,//只允许单文件上传
        'buttonText':'Choose File',
        'scriptData': { 'name': '', 'type': '','length':'' },//在加载时此处是null
        //'onInit':function(){alert("1");},//初始化工作,在Extjs的嵌套中最先触发的函数
        //选择一个文件后触发
        'onSelect': function(event, queueID, fileObj) {
//          alert("唯一标识:" + queueID + "\r\n" +
//          "文件名:" + fileObj.name + "\r\n" +
//          "文件大小:" + fileObj.size + "\r\n" +
//          "创建时间:" + fileObj.creationDate + "\r\n" +
//          "最后修改时间:" + fileObj.modificationDate + "\r\n" +
//          "文件类型:" + fileObj.type);
           $("#uploadify").uploadifySettings("scriptData", { "length": fileObj.size}); //动态更新配(执行此处时可获得值)
        },
        //上传单个文件接收后触发
        'onComplete': function (event, queueID, fileObj, response, data) {
           var value = response;
           if(value==1){
           Ext.Msg.alert("提示","上传成功");
           }
           else if(value==0){
           Ext.Msg.alert("提示","请选择上传文件");
           }
           else if(value==-1){
            Ext.Msg.alert("提示","已存在该文件");
           } 

         }
      });
    <%-- jQuery装载函数结束--%>

动态的传递参数,并判断是否合法

//动态加载
  function loadFileType(){
  //检测
  var medianame=Ext.getCmp("eName").getValue();
  if(medianame.trim()==""){
    Ext.Msg.alert("提示","媒体名称不能为空");
    return;
  }
  var filetype=Ext.getCmp("eType").getValue();
  if(filetype=="" || filetype<0){
    Ext.Msg.alert("提示","请选择媒体类型");
    return;
  }
  //动态更新配(执行此处时可获得值)
  $("#uploadify").uploadifySettings("scriptData", { "name": medianame,"type":filetype,"sessionuserid":<%=session_userid %> });
  //上传开始
  $('#uploadify').uploadifyUpload();
  }

<%=session_userid %>是取后台的一个变量,该变量在加载页面的时候获得了session值。当然也可以在前台直接获得session值。 
后台处理程序:

public class FileUploadHelper : IRequiresSessionState, IHttpHandler
{ 

  int nCurrentUserID = -1;
  public void ProcessRequest(HttpContext context)
  {
    try
    {
      nCurrentUserID = WebUtil.GetCurrentUserID();//该处的session值得不到
    }
    catch (Exception)
    {
    }
    context.Response.ContentType = "text/plain";
    context.Response.Charset = "utf-8"; 

    string strFilename = string.Empty;
    int nFiletype = 0;
    float fFilelength = 0;
    string strFileExt = string.Empty;
    string strFilePath = string.Empty;
    if (context.Request["sessionuserid"] != null)
    {
      nCurrentUserID = Convert.ToInt32(context.Request["sessionuserid"].ToString());
    }
    if (context.Request["name"] != null)//获得文件名(动态参数)
    {
      strFilename = context.Request["name"].ToString();
    }
    if (context.Request["type"] != null)//获得文件类型(动态参数)
    {
      nFiletype = Convert.ToInt32(context.Request["type"].ToString());
    }
    if (context.Request["length"] != null)//获得文件长度(动态参数)
    {
      int nEmptFileLength = Convert.ToInt32(context.Request["length"].ToString());
      fFilelength = (float)nEmptFileLength / 1024;
    }
    if (context.Request["Filename"] != null)//获得文件名(系统自带)
    {
      string filename = context.Request["Filename"].ToString();
      strFileExt = Path.GetExtension(filename).ToLower();//获得后缀名
    }
    HttpPostedFile file = context.Request.Files["Filedata"];
    string uploadPath = HttpContext.Current.Server.MapPath(@context.Request["folder"]);
    //根据当前日期创建一个文件夹
    string dirName = System.DateTime.Now.ToString("yyyyMMdd");
    uploadPath += dirName; 

    string tmpRootDir = context.Server.MapPath(System.Web.HttpContext.Current.Request.ApplicationPath.ToString());//获取程序根目录 

    if (file != null)
    {
      //判断目录是否存在
      if (!Directory.Exists(uploadPath))
      {
        Directory.CreateDirectory(uploadPath);
      }
      //判断文件是否存在
      strFilePath = uploadPath + "\\" + strFilename + strFileExt;
      if (!File.Exists(strFilePath))
      {
        //写数据库成功保存文件
        Media model = new Media();
        int newMediaID = -1;
        model.media_type = nFiletype;
        model.media_name = strFilename + strFileExt;
        model.file_path = strFilePath.Replace(tmpRootDir, "");//保存相对目录
        model.file_length = fFilelength;
        newMediaID = MediaBLL.AddMadia(model, nCurrentUserID);
        if (newMediaID > -1)//数据库写入成功
        {
          //保存文件
          file.SaveAs(strFilePath);
          //下面这句代码缺少的话,上传成功后上传队列的显示不会自动消失
          context.Response.Write("1");
        }
      }
      else
      {
        context.Response.Write("-1");
      }
    }
    else
    {
      context.Response.Write("0");
    }
  }

这样就可以解决该问题了。

希望这两种方法都能帮助大家顺利解决session丢失问题,谢谢大家的阅读。

(0)

相关推荐

  • iis7中session丢失的解决方法小结

    问题描述: Windows Server 2008 +IIS +ASP.net +SQLServer2008搭建的内部WEB系统. 用户Session总是丢失,可能是IIS的不稳定性将导致Session频繁丢失. 用的是Session=SQLSEVER,即把Session保存到数据库. 解决方法: 1,在命令行进入如下地址(InstallSqlState.sql文件目录) cd "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727" 2,运行如下

  • IIS服务器中 ASP.NET State Service 开启后 Session 仍容易丢失的问题终极解决办法

    解决方法一: 1. 开启ASP.NET State Service服务: 选择管理工具->服务,找到ASP.NET State Service,点开后选择启动,并将启动类型设为自动. 2. 设置程序配置文件: 将web.config打开,会看到有一行是<sessionState mode="InProc" stateConnectionString="tcpip=127.0.0.1:42424" timeout="20"/>,如

  • ie与session丢失(新窗口cookie丢失)实测及解决方案

    今天在一个群中有人问到ie6中使用js的open,发现新窗口中并获取不到session, 经过使用下面的测试代码测试发现,是因为phpsessionid储存是进程级的有效期,只有同一进程才能获取得到,很多人说,open后或是target="_blank",都是会打开新的ie进程, 所以,之前窗口的phpsessionid就不跟着新窗口走,导致获取不到. 我自己的测试使用的是ietest,6/7/8(9启动不起来,不确定),都出现相同的情况. 但是使用windows自带的ie10测试不存

  • Session丢失的解决办法小结

    SessionState 的Timeout),其主要原因有三种 一:有些杀病毒软件会去扫描您的Web.Config文件,那时Session肯定掉,这是微软的说法. 二:程序内部里有让Session掉失的代码,及服务器内存不足产生的. 三:程序有框架页面和跨域情况. 第一种解决办法是:使杀病毒软件屏蔽扫描Web.Config文件(程序运行时自己也不要去编辑它) 第二种是检查代码有无Session.Abandon()之类的. 第三种是在Window服务中将ASP.NET State Service

  • JQuery上传插件Uploadify使用详解及错误处理

    什么是Uploadify Uploadify是JQuery的一个上传插件,支持多文件上传,实现的效果非常不错,带进度显示. 官网提供的是PHP的DEMO,在这里我详细介绍在Asp.net下的使用. 下载 官方下载 官方文档 官方演示 我们提供的Uploadify下载地址 如何使用 1 创建Web项目,命名为JQueryUploadDemo,从官网上下载最新的版本解压后添加到项目中 2 在项目中添加UploadHandler.ashx文件用来处理文件的上传. 3 在项目中添加UploadFile文

  • asp.net 删除项目文件/文件夹IIS重启,Session丢失问题

    仔细一看,SSO返回的ticket也不相同,才发现原来IIS重启了,最后解决方案如下: 新建一个类继承IHttpModule 复制代码 代码如下: /// <summary> /// Stops the ASP.NET AppDomain being restarted (which clears /// Session state, Cache etc.) whenever a folder is deleted. /// </summary> public class Stop

  • asp.net 修改/删除站内目录操作后Session丢失问题

    后来经过试验发现,如果删除改变的目录不属于当前项目所在虚拟目录,则Session可用,相反则不可用:调试跟踪中提示的:Session.get_item()--返回null: 后经过研究发现,在虚拟目录删除改变目录会造成Session丢失,以至于失效.而session丢失的实质就是:应用程序重起! 这里有多种解决方案: 1)利用外部进程保存 session 2)利用数据库保存 session 3)用户ID放入cookie,若检测到session为空但cookie存在在重新初始化 session.

  • ASP.NET在IE10中无法判断用户已登入及Session丢失问题解决方法

    今天发现在IE10中登录我公司的一个网站时,点击其它菜单,页面总会自动重新退出到登录页,后检查发现,IE10送出的HTTP头,和.AUTH Cookie都没问题,但使用表单验证机制(FormsAuthentication)却无法判断该用户已登入,保存的Session总会丢失. 后查实这是ASP.NET 2.0,3.5和4.0的Bugs,因这些版本无法识别IE10的User-Agent标头字符串,所以无法识别用户浏览器的版本,从而导至了ASP.NET的特定功能失效,认为游览器不支持Cookies功

  • uploadify在Firefox下丢失session问题的解决方法

    今天在用uploadify上传插件时遇到了一个问题,由于我后台做了权限管理,每个请求都有去读session判断权限,但用这个插件时发现登录后上传不了,原因是在读session时认为没有权限而被拦截了,后来在后台打印登录时产生session的id和上传时读取session的id,果然不一样,在网上搜索了一番,还真有不少人遇到这个问题,现把解决方案贴出来: 先说说我的环境,后台是用JSP,uploadify的版本是3.2 在JSP页面中的配置: 复制代码 代码如下: <script type="

  • asp.net删除文件session丢失

    如果你曾经修改了ASP.NET应用程序(dll文件),与修改了bin文件夹或Web.config文件(添加/删除/重命名的文件等),而该网站在运行,你可能已经注意到,这将导致在AppDomain的重新启动.所有的会话状态会丢失和网站再次成功启动,任何登录的用户将被退出(假设你不使用持久Cookie身份验证). 当然,当我们修改了web.config文件,并保存它,迫使一个AppDomain重新启动,这是我们需要的. 我们有时动态创建和删除的文件夹,在ASP.NET 2.0中,文件夹删除将导致一个

随机推荐