如何在C#中声明会话变量?

时间:2013-05-06 21:22:26

标签: c# session declare

我想创建一个新会话,在该会话中保存文本框中输入的内容。然后在另一个aspx页面上,我想在标签中显示该会话。

我只是不确定如何开始这个,以及放置所有内容。

我知道我需要:

protected void Page_Load(object sender, EventArgs e)
{
    if (Session["newSession"] != null)
    {
        //Something here
    }
}

但我仍然不确定在哪里放一切。

1 个答案:

答案 0 :(得分:11)

newSessionSession变量的糟糕名称。但是,您只需使用索引器,就像您已经完成的那样。如果您想提高可读性,可以使用属性,甚至可以是静态属性。然后,您可以在第二页的第一页上访问它而不需要它的实例。

第1页(或您喜欢的任何地方):

public static string TestSessionValue 
{ 
    get 
    {
        object value = HttpContext.Current.Session["TestSessionValue"];
        return value == null ? "" : (string)value;
    }
    set 
    {
        HttpContext.Current.Session["TestSessionValue"] = value;
    }
}

现在你可以从任何地方获取/设置它,例如在TextChanged - 处理程序的第一页上:

protected void TextBox1_TextChanged(Object sender, EventArgs e)
{
    TestSessionValue = ((TextBox)sender).Text;
}

并在第二页上阅读:

protected void Page_Load(Object sender, EventArgs e)
{
    this.Label1.Text = Page1.TestSessionValue; // assuming first page is Page1
}