mvc中 在action中的session 获取不到值

public string StartImport()
{
try
{
string code = Session["Code"].ToString();
this.Logger.Debug("Hello StartImport");

            List<Model.Shop> list = ImportGoodsServices.GetImpowerShop(code);
            string key = "";
            for (int i = 0; i < list.Count; i++)
            {
                key = ProductService.StartTaobaoFullDownload(list[i].Session, list[i].Account);
                Session["session"] = list[i].Session;
                Session["nick"] = list[i].Account;
            }
            Session["keyId"] = key;
            this.Logger.Debug("keyId" + key);
            return Error.Empty.ToJson();
        }
        catch (Exception e)
        {
            this.Logger.Error(e.ToString());
            return new Error("-1", e.Message).ToJson();
        }
    }

在上面的action中就保存了session["keyId"]的值 在下一个action中 为何取不到

public ActionResult ImportFail()
{

string key = Session["keyId"].ToString();
this.Logger.Debug("keyId" + key);
ViewData["list"] = ProductService.ClearTaobaoDownloadTask(key);
return View();
}

我也碰到这个问题了,后台获取不到session,对了,我的界面上用了uploadify,你用了吗?