On your Loging Page Page_Load event use:
if (Request.QueryString["logout"] == "true")
{
string nextpage = "Login.aspx";
Response.Write("<SCRIPT LANGUAGE=javascript>");
Response.Write("{");
Response.Write(" var Backlen=history.length;");
Response.Write(" history.go(-Backlen);");
Response.Write(" window.location.href='" + nextpage + "'; ");
Response.Write("}");
Response.Write("</SCRIPT>");
}
On your Logout page Page_Load use the following :
Session.Abandon();
FormsAuthentication.SignOut();
Response.Redirect("Login.aspx?logout=true");
Life should be good after that.