This worked for me:
In the Logout event / method for each site, use the Cookies collection in the Request object and delete the corresponding cookies, as shown below:
enter code hereHttpCookie cookie = Request.Cookies.Get(".CommonCookieName"); cookie.Expires = DateTime.Now.AddDays(-1); HttpContext.Current.Response.Cookies.Add(cookie);
If all sites in SSO use the same cookie, then this is simple as described above. If several or every site participating in SSO uses its own cookie / user name for the same subject (person), then you need to delete all cookies. (perhaps create a central location by displaying usernames and cookies on each site in the SSO host collection.
Praveen
source share