You could use the replace function in JS to go from form to form thus disabling the ability for them to be able to go back if they do find a way after disabling everything.

replace Method
The replace method replaces the current History entry with the specified URL. After calling the replace method, you cannot navigate back to the previous URL using the browser's Back button.


Syntax: location.replace(URL)

My favorite JS Reference:
http://www.devguru.com/Technologies/ecmascript/quickref/_javascript__index.html

Tyler Clendenin
GSL Solutions
  ----- Original Message -----
  From: Hassan Arteaga Rodriguez
  To: CF-Talk
  Sent: Monday, February 09, 2004 11:46 AM
  Subject: RE: Page Cache..

  Thanks Jeremy..good idea to open the wizard in another window

  Regards

  __
  MSc. Hassan Arteaga Rodríguez
  Microsoft Certified System Engineer.
  DIGI- Grupo de Desarrollo
  COPEXTEL, S.A.

    _____  

  From: Jeremy Brodie [mailto:[EMAIL PROTECTED]
  Sent: Monday, February 09, 2004 10:33 AM
  To: CF-Talk
  Subject: Re:Page Cache..

  "Caution: There is no true way of completely diabling the back button"

  With the short answer out of the way, here's some _javascript_ that will make
  it harder for folks to move backwards on your page.

  Step one: Open the first page of the application in a new window. Use this
  script as an example of preventing the back button from appearing in the
  window

  <DEFANGED_script language="_javascript_"><!--
  msgWindow=window.open('myPage.html','MyWindow','toolbar=no');
  //--></DEFANGED_script>

  Step two: Disable the right clicker using this script from Dynamic Drive.
  Please note that it only works in IE consistantly

  <DEFANGED_script language=_javascript_>
  <!--

  //Disable right mouse click Script
  //By Maximus ([EMAIL PROTECTED]) w/ mods by DynamicDrive
  //For full source code, visit http://www.dynamicdrive.com

  var message="Function Disabled!";

  ///////////////////////////////////
  function clickIE4(){
  if (event.button==2){
  alert(message);
  return false;
  }
  }

  function clickNS4(e){
  if (document.layers||document.getElementById&&!document.all){
  if (e.which==2||e.which==3){
  alert(message);
  return false;
  }
  }
  }

  if (document.layers){
  document.captureEvents(Event.MOUSEDOWN);
  document.>   }
  else if (document.all&&!document.getElementById){
  document.>   }

  document. Function("alert(message);return false")

  // -->
  </DEFANGED_script>

  Jeremy Brodie
  Edgewater Technology

  web: http://www.edgewater.com
  phone:(703) 815-2500
  email: [EMAIL PROTECTED]

  >Hi there:
  >I'd like to avoid back button in the IE...I have a wizard with 3 pages..If
  u
  >click on the button Step 2 u are not allowed to go back to the page 1. I
  >used CFcache tag with timestamp="0" but it  doesn't work......any idea?
  >
  >regards
  >__
  >MSc. Hassan Arteaga Rodríguez
  >Microsoft Certified System Engineer.
  >DIGI- Grupo de Desarrollo
  >COPEXTEL, S.A.
  >
  >
    _____
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to