Problem: I am using
FormsAuthentication.SetAuthCookie(UserId, False)
[Snip]
Response.Redirect("~/login_pages/home2.aspx") ' Force round trip so that logon works OK
to logon a user. It all works fine with other browsers, and IE7 provided that IE7's PRIVACY (originally I had written "Security") setting is Low. However it doesn't work when the PRIVACY setting is Medium (the default).

How do I solve this problem? I would have expected that FormsAuthentication.Authenticate(Userid, password) was the solution, but this doesn't seem to work at all.

Thank you, Robert Barnes ...

Go to the complete details ...