本文介绍了SQL Server SessionState模式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我使用SessionState模式= Sqlserver;我为login_button_click事件声明了一个会话变量,比如
Hi,
If I use SessionState mode= Sqlserver; and i declare a session variable for login_button_click event, like
protected void btn_submit_Click(object sender, EventArgs e)
{
Session["Username"] = txt_name.Text;
Response.Redirect("UserDetails.aspx");
}
- 用户名会话是否会存储在SqlServer的ASPState数据库中?
和
- 会话变量在自动存储到SQL服务器时会被序列化吗?
请建议朋友..
-Will the "Username" session be stored in SqlServer's ASPState Database?
and
-Will the Session variable gets Serialized while storing in SQL server automatically?
Kindly suggest friends..
推荐答案
这篇关于SQL Server SessionState模式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!