我在windows azure中使用联合身份验证,将facebook作为身份提供者 我按照以下链接和其他一些帮助让我通过
现在我不知道如何处理注销。任何人都可以帮忙!!
答案 0 :(得分:3)
您可以使用类似
的内容WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule;
FormsAuthentication.SignOut();
fam.SignOut(true);
// Write your code to Redirect to home page after Log Out
一切顺利。