我正在尝试按照ASP.NET OutputCache 和 Cookies中的建议在 Global.asax.vb 中的 Application_EndRequest 中设置一个 cookie
我编写了以下代码,cookie 获得了ERROR
价值。
为什么会话不可用?
Sub Application_EndRequest(ByVal sender As Object, ByVal e As EventArgs)
Dim context As HttpContext = HttpContext.Current
If Not context.Session Is Nothing Then
context.Response.Cookies("T").Value = context.Session("T")
Else
context.Response.Cookies("T").Value = "ERROR"
End If
End Sub