The same code,Application's key can be saved in vs2010 after closing the page,but cannot be save in vs2012
protected void Page_Load(object sender, EventArgs e)
{
object value = Application["a"]; // value = 'abc' in 2010,value = null in 2012
Application["a"] = "abc"; //save the value
}
ページを閉じて再起動すると、アプリケーションのキーはvs2010に存在しますが、vs2012には何もありませんでした.アプリケーションにいくつの値を設定しても、ページを再起動するとすべて消えてしまいます..なぜですか?誰でも私を助けることができますか?