I am writing an application that if the user hits back, it may resend the same information and mess up the flow and integrity of data. How do I disable it for users who are with and without javascript on?
相关问题
- TestCafe - The browser always starts in clean slat
- UrlEncodeUnicode and browser navigation errors
- Character Encoding in iframes
- How to load local *.htm file to WPF WebBroswer wit
- Selenium newer Chrome cannot disable browser notif
相关文章
-
Is it bad to put elements within the <hea
- Calling Chrome web browser from the webbrowser.get
- How can a browser know the scss files?
- Is there a way to specify minimum and maximum zoom
- How to invoke phone dialer in browser? or is it im
- Can't detect Android in web server
- Android browser scaling?
- Form being randomly submitted as GET instead of PO
查看全部
Best option is not to depend on postbacks to control flow, however if you are stuck with it (for now)
you may use something like this:
Soon you will find that it will not work on all browsers, but then you may introduce a check in your code like:
That will solve problem to some extend, Code not checked -- only for examples purposes..