Session
Posted 纡ゾ少︶ㄣ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Session相关的知识,希望对你有一定的参考价值。
Session
保存在服务器上
很安全
占用服务器资源
只有会话模式 20分钟生命周期
可以存任意数据类型,Object,取的时候需要类型转换
服务器内存
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Default1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Button1.Click += Button1_Click; } void Button1_Click(object sender, EventArgs e) { string uname = TextBox1.Text;//获取用户输入的用户名 string pwd = TextBox2.Text;//获取用户输入的密码 Users u = new UsersData().SelectUser(uname, pwd); Session["hehe"] = u;//传值 Response.Redirect("Default5.aspx");//跳到Default5.aspx } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Default5 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (Session["hehe"] != null)//不为空的时候执行 Label1.Text = (Session["hehe"] as Users).NickName;//接受传过来的值 Session["hehe"] as Users变成对象 } }
以上是关于Session的主要内容,如果未能解决你的问题,请参考以下文章
一个队asp.net session进行了再次封装的C#类的代码
少部分手机浏览器对于COOKIE支持不够导致服务端无法读取session的解决方案
hibernate在使用getCurrentSession时提示no session found for current thread