前言
最近在准备ASP.NET的考试。。。。。
较常用且比较简单的四种传值方式是:
- QueryString
- Session
- Cookies
- Applicatiom
一、QueryString
优点:
1.使用简单,对于安全性要求不高时传递数字或是文本值非常有效。
缺点:
1.缺乏安全性,由于它的值暴露在浏览器的URL地址中的。
2.不能传递对象。
例子
a.apsx
private void Button1_Click(object sender, System.EventArgs e)
{
string s_url;
s_url = "b.aspx?name=" + Label1.Text;
Response.Redirect(s_url);
}
b.aspx
private void Page_Load(object sender, EventArgs e)
{
Label2.Text = Request.QueryString["name"];
}
千万注意:
Request.QueryString["name"];是中括号
二、Session
优点
1.使用简单,不仅能传递简单数据类型,还能传递对象。
2.数据量大小是不限制的。
缺点
1.在Session变量存储大量的数据会消耗较多的服务器资源。
2.容易丢失。
例子
a.aspx
private void Button1_Click(object sender, System.EventArgs e)
{
Session["name"] = Label.Text;
}
b.aspx
private void Page_Load(object sender, EventArgs e)
{
string name;
name = Session["name"].ToString();
}
三、Cookie
优点
1.使用简单,是保持用户状态的一种非常常用的方法。比如在购物网站中用户跨多个页面表单时可以用它来保持用户状态。
缺点
1.常常被人认为用来收集用户隐私而遭到批评。
2.安全性不高,容易伪造。
例子
a.aspx
private void Button1_Click(object sender, System.EventArgs e)
{
HttpCookie objCookie = new HttpCookie("myCookie","Hello,Cookie!");
Response.Cookies.Add(objCookie);
}
b.aspx
string myName1Value;
myName1Value = Request.Cookies[ "myCookie" ].Value;
四、Application
优点
1.使用简单,消耗较少的服务器资源。
2.不仅能传递简单数据,还能传递对象。
3.数据量大小是不限制的。
缺点
1.作为全局变量容易被误操作。所以单个用户使用的变量一般不能用application。
例子
a.aspx
private void Button1_Click(object sender, System.EventArgs e)
{
Application["name"] = Label1.Text;
}
b.aspx
private void Page_Load(object sender, EventArgs e)
{
string name;
Application.Lock();
name = Application["name"].ToString();
Application.UnLock();
}