I am doing online quiz in a Page in my website. How i will restrict users from going backward or forward using Broowser backward or forward button in that page using ASP.Net,C#,JavaScript.
Best way is to clear cache and hence add the following to all pages Page Load event
Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1)); Response.Cache.SetNoStore();
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.