Jack Wright wrote:
I would like to disable the Refresh events like (F5, Ctrl+R,
RightClick Mouse + Refresh, Ctrl+N)...
I have been able to solve F5 and RightClick Mouse + Refresh...how to I
trap or ignore Ctrl+R or Ctrl+N...
It cannot reliably be done. Instead what you do is identify what makes
the user refreshing the browser a problem and fix that. It is usually a
server-side process that has been designed in a way that is not
appropriate for its operation over HTTP. A little more thought in the
area of server side session management can usually render a client's
attempts to refresh a page insignificant.
Richard.