日期:2014-05-17 浏览次数:20610 次
public JsonResult Ajax1()
{
this.HttpContext.Session["aaa"] = "aaa";
return Json(new { a="action"});
}
public JsonResult Ajax2()
{
string s = this.HttpContext.Session["aaa"] as String;
return Json(new { a="action"});;
}