List(of String)
で作成したを含むセッションがありますMain.aspx
。私の場合Global.asax
、次のコードを実行して、Session
a が起動された後に値を取得しますTimer
。
Private Sub Application_AcquireRequestState(sender As Object, e As EventArgs)
If System.Web.HttpContext.Current.Session IsNot Nothing Then
If Session("Products") IsNot Nothing Then
Response.Write(Session("Products").ToString())
End If
End If
End Sub
ただし、Session("Products")
Null を返し、Sub
終了します。End Sub
がMain.aspx
リリースされているので、が発火Session
するたびにが空になるのではないかと思います。何かご意見は?Timer
Session