The On Request handler is definitely being called if it is defined. It would help if I saw the code in the handler.

  I just removed the comment signs and put in this line:

throw("ON REQUEST HANDLER")

and I never get it to see.

That's because you are not yet executing anything when the On Request handler is called, so there is no page to display an error.

To do what you wanted, put this code in your On Request handler:

if ($inURL = "/goToSomePage.shtml")
    $someOtherURL := "/whatever.shtml"  `calculate your URL
    return ($someOtherURL)
end if

Regards,

   Aparajita
   Victory-Heart Productions
   www.aparajitaworld.com

   "If you dare to fail, you are bound to succeed."
   - Sri Chinmoy   |   www.srichinmoylibrary.com

_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to