I' ve my cookie to
Dim authCookie As New HttpCookie(FormsAuthentication.FormsCookieName)
I've just started learning about cookies not long ago,can I retrieve the cookie that I've set by using the code below?
Dim authCookie As String = FormsAuthentication.FormsCookieName
If Not Request.Cookies(authCookie) Is Nothing Then
'Display requested page
Else
Response.Redirect("Login.aspx?")
End If