I have implemented Signout functionality for an asp.net mvc application. I have a button called SignOut and for the button click I hooked the code in a Controller class as mentioned below:
public void SignOut()
{
try
{
WSFederationAuthenticationModule.FederatedSignOut(null, null);
}
finally
{
if (FederatedAuthentication.SessionAuthenticationModule != null)
FederatedAuthentication.SessionAuthenticationModule.DeleteSessionTokenCookie();
}
}
I am getting an error in the line FederatedAuthentication.SessionAuthenticationModule.DeleteSessionTokenCookie(); as mentioned below :
Error: Server cannot modify cookies after HTTP headers have been sent.
Can anyone help me regarding the above issue.
Thanks & Regards, Santosh Kumar Patro