Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. How to expire previous page?

How to expire previous page?

Scheduled Pinned Locked Moved ASP.NET
csharpquestionasp-nethelptutorial
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • A Offline
    A Offline
    Amit Kushwaha
    wrote on last edited by
    #1

    Hi All, i m using c#,asp.net with 1.1 framework. i m trying that user must be able to navigate only in forward direction, i.e. clicking on back button must display an error page like "Page Expire". how can i implement this fuctionality...

    Thanks in advance... Regards... Amit

    M 1 Reply Last reply
    0
    • A Amit Kushwaha

      Hi All, i m using c#,asp.net with 1.1 framework. i m trying that user must be able to navigate only in forward direction, i.e. clicking on back button must display an error page like "Page Expire". how can i implement this fuctionality...

      Thanks in advance... Regards... Amit

      M Offline
      M Offline
      MihirV
      wrote on last edited by
      #2

      Hi there, Write the following header settings in Page Load event, Page will always rendered from the server rather than from cache... and displays a message stating that page is expired.

      Response.AddHeader ("Pragma", "no-cache");
      Response.Cache.SetCacheability (HttpCacheability.NoCache);
      Response.Cache.SetExpires (DateTime.Now.AddHours (-1));
      

      Confidence comes not from always being right, but from not fearing to be wrong. Mihir..

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups