好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 解決uploadify使用時session發生丟失問題的方法

解決uploadify使用時session發生丟失問題的方法

熱門標簽:網絡電話外呼系統上海 聯通官網400電話辦理 400電話辦理怎么樣 臨沂智能電話機器人加盟 地圖標注軟件免費下載 蘇州如何辦理400電話 西寧呼叫中心外呼系統線路商 外呼電話機器人成本 百應電話機器人外呼系統

今天在使用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); 
       
        ListModel.ModelFile> list = null; 
        if (context.Session["File"] == null) 
        { 
          list = new ListModel.ModelFile>(); 
        } 
        else 
        { 
          list = context.Session["File"] as ListModel.ModelFile>; 
        } 
        list.Add(model); 
        context.Session.Add("File", list); 
      } 
      else 
      { 
        context.Response.Write("0"); 
      }  
    } 

這段代碼的功能是將多文件的信息存到context.Session["File"] as ListModel.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=="" || filetype0){ 
    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丟失問題,謝謝大家的閱讀。

您可能感興趣的文章:
  • C# SESSION丟失問題的解決辦法
  • Yii框架用戶登錄session丟失問題解決方法
  • php頁面跳轉session cookie丟失導致不能登錄等問題的解決方法
  • Session 失效的原因匯總及解決丟失辦法
  • Windows下Apache + PHP SESSION丟失的解決過程全紀錄
  • Session丟失的解決辦法小結
  • iis7中session丟失的解決方法小結
  • uploadify在Firefox下丟失session問題的解決方法
  • ASP.NET在IE10中無法判斷用戶已登入及Session丟失問題解決方法
  • 解決window.location.href之后session丟失的問題

標簽:臨夏 清遠 甘肅 聊城 海西 慶陽 平涼 中衛

巨人網絡通訊聲明:本文標題《解決uploadify使用時session發生丟失問題的方法》,本文關鍵詞  解決,uploadify,使,用時,session,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《解決uploadify使用時session發生丟失問題的方法》相關的同類信息!
  • 本頁收集關于解決uploadify使用時session發生丟失問題的方法的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 色老汉视频| www.涩| 领导粗大娇妻受不了| 免费的黄色| 亚洲日韩精产国品一二三产品测评 | 灌满了男人们的浓浆包玉婷| 久久亚洲影院| 三邦车视午夜大片性爽院| 国产一级在线观看视频| 中文字幕一区二区三区四区| 在线视频国产欧美另类| 美国一级毛片片aa成人| 一级AAAAAA毛片免费同男同Lj| 不要好涨好深好爽h| 一级特黄aaa大片| 他扒开我内裤强吻我下面视频,| 亚洲AV一区二区大桥未久| 成人永久免费福利视频| 忘忧草1688网站| 国产精品久久国产精麻豆99网站| 女教师被婬辱の教室XXX| 91网站在线观看国产一区二区三区 | 欧美极品HD高清不卡| 厉先生的宝贝太磨人小说免费| 亚洲 日韩 欧美 制服 二区| 欧美v高清资源不卡在线播放| 满清禁宫秘史一级毛片| 男男GaYGAYS?免费做污| 美女又爽?又黄?偷拍app| 大肚调教孕play双性生子| 蜜桃毛片在线| 999久久无码毛片一区三区| 丰满肥臂欧美XXX无码hD| 婷婷久久久久久精品免费老鸭| 年轻的老师3线在完整视频| 婷婷国产亚洲精品网站| 粉嫩av秘?臀av高清麻豆 | 中文字幕亚洲电影| 无码专区人妻系列日韩精品少妇 | 嗯啊不要操| 午夜性刺激免费观看AV|