Re: Browser Back button intercept, no javascript

2022-01-26 Thread Lukasz Lenart
It won't be possible to detect that the given request reached your application because a user hit the Back button. There is no indication in HTTP protocol that could tell you so. Regards Łukasz wt., 25 sty 2022 o 22:58 albert kao napisał(a): > > If the user presses the Back button of a browser,

Browser Back button intercept, no javascript

2022-01-25 Thread albert kao
If the user presses the Back button of a browser, my application likes to intercept that and display a text message at the current web page. How to do that without using javascript? The following codes show an approach with AbstractInterceptor. Please review whether it will work. If yes, how to