Write this code in the page from where you dont want to go back:
protected void Page_Load(object sender, EventArgs e)
{
Session.Abandon();
Session.Clear();
Response.Redirect("home.aspx");
Page.RegisterClientScriptBlock("", "<script>if(history.length>=0)history.go(+1);</script>");
}