any ideas why my SESSION code works with IE+Firefox+chrome but fails with safari..
page1.aspx has code:
Session("sessioncreated") = Now.Ticks
page2.aspx : problem is here( when user comes to page2:)
If Session("sessioncreated") Is Nothing Then
' critical error - SAFARI comes here, data is lost
else
' all other browsers come here OK
end if
how to debug this further?
my web.config has nothing special - I am using just the default values for session handling