我尝试搜索这个,但我什至不知道如何用它来搜索。
我试图做的是有一个类,每次我访问它来更改它时,我真的从会话中获取和设置值。
这是我正在尝试做的事情(我到目前为止所做的事情。):
public class example
{
public int prop1 {get;set;}
public static example Instance
{
return (example)(HttpContext.Current.Session["exampleClass"] ?? new example());
}
}
public class main
{
protected void Page_Load(object sender, EventArgs e)
{
example.Instance.prop1 = "aaa"; //stores value into session
txtInput.Text = example.Instance.prop1; //retrieves value from session
}
}
我希望这对我正在尝试做的事情有意义。
任何帮助将不胜感激,谢谢。