I use session variables for keeping track whether a user has logged in or not. When someone logs out, I set Session["SOME_VAR"] = null. Then, on all other pages, I check whether Session["SOME_VAR"] exists. This works fine in firefox/explorer, but not in opera, it seems like I still can log in, even when I put Session[".."] = null. Is there any other way to destroy sessions?