To clear history using java script code just try following code.
<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
If Len(Session("FirstTimeToPage")) > 0 then
Session("FirstTimeToPage") = ""
Response.Redirect "home.aspx"'home page
Response.End
End If
%>