I have done small module like anonymous user login into my app using facebook developer app.
It was working but after logout the history of facebook is not deleting.
how to do that ,please tell me?..
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Riddhi ValechaPosted Jan 12, 2015, 7:34 AM
Session.Clear();
This will clear all session values from the system.
Munesh SharmaPosted Jan 12, 2015, 6:34 AM
protected void Page_Load(object sender, EventArgs e)
{
if (!HttpContext.Current.User.Identity.IsAuthenticated)
{ Response.Redirect("Login.aspx");
}
}
https://go4answers.webhost4life.com/Example/clear-history-page-logout-126864.aspx