Hi
I do have cookies switched on, and have tried the workaround as you suggested - in fact I've spent two hours this afternoon trying to get it to work. But am still getting false results.
this is my code . . .
If IsNothing(Request.Cookies("newcookie")) Then
Dim Cookie1 As New HttpCookie("newcookie")
Dim ExpiryDate As DateTime = DateTime.Now()
ExpiryDate = ExpiryDate.AddHours(1)
Cookie1.Value = "new4esportsession"
Cookie1.Expires = ExpiryDate
Response.Cookies.Add(Cookie1)
' Now write new session details
Surely the session_start sub should only be fired once - ie when a session starts. Why does this occur ?
Thanks
TM