here is the code I wrote on my asp page..
when user leaves from this page after hitting submit button,if the click browser back button..the page has to expire..but its not doing that..
its show all the previous content that was on there,I can't avoid multiple submition..
Please help to solve this issue..
<%
Response.Expires = -1
Response.ExpiresAbsolute = CDate("07/29/1980"
Response.AddHeader "pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
Response.CacheControl = "no-cache"
%>
when user leaves from this page after hitting submit button,if the click browser back button..the page has to expire..but its not doing that..
its show all the previous content that was on there,I can't avoid multiple submition..
Please help to solve this issue..
<%
Response.Expires = -1
Response.ExpiresAbsolute = CDate("07/29/1980"
Response.AddHeader "pragma", "no-cache"
Response.AddHeader "cache-control", "no-store"
Response.CacheControl = "no-cache"
%>