views:

211

answers:

1
+1  A: 

Well it looks like the issue was that the domain for the cookie was appearing as null, when it was in fact the same as the FormsAuth cookie. I changed the code to

Domain = oldFormsCookie.Domain ?? FormsAuthentication.CookieDomain

and it seemed to work

mcintyre321