473,395 Members | 1,464 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Browser back button

How can the browser back button be disabled If the form is submitting
information to other pages or submitting to itself or using
redirections.

I tried the tweaks like history.forward(1) in each page to prevent user
to navigate back but its not very effective.

The server side scripting is done using ASP.

you may ask that why at first place I want to disable the browser back
button, this is due to the following issue
http://groups.google.co.in/group/asp...a38b4635b32b88

In absence of response from responsible MVPs, I decided to provide a
back button in the application that use redirection mechanisms but
since user always has back button on browser, it makes the application
error-prone.

Thanks,

Aug 8 '06 #1
5 2974
ns21 said the following on 8/8/2006 2:46 AM:
How can the browser back button be disabled
Make sure there is no other page opened first. Otherwise, it can't be
disabled.
If the form is submitting information to other pages or
submitting to itself or using redirections.
Whether it is submitting information to another page, itself, to
nowhere, using redirects, is all irrelevant. You can't disable the back
button if the browser enables it.

I tried the tweaks like history.forward(1) in each page to prevent user
to navigate back but its not very effective.
It's not a "tweak", its a .001% effective hack is all.
The server side scripting is done using ASP.
ASP, PHP, PERL, it's irrelevant what server side language is used to
generate what the browser deals with.
you may ask that why at first place I want to disable the browser back
button, this is due to the following issue
http://groups.google.co.in/group/asp...a38b4635b32b88
Fix your back end and stop trying to fix the wrong problem. Your server
side code should be able to handle *anything* the client does - and -
recover from it without client side hacks to prop it up.
In absence of response from responsible MVPs,
I only know 1 responsible MVP.
I decided to provide a back button in the application that use
redirection mechanisms but since user always has back button on
browser, it makes the application error-prone.
If the Back button breaks your app, it was error-prone before the Back
button was discovered.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 8 '06 #2
Thanks Randy for quick reply,

You are right that I could be in wrong direction to fix the wrong
problem.

But the issue, which I am facing is the originator of the wrong
approach.
The issue mentioned in this thread
http://groups.google.co.in/group/asp...a38b4635b32b88

This is really not specific to ASP, its rather a browser level issue
but since I was working on ASP I posted that into ASP forum.

I have posted very small code in the thread above that helps simulating
the issue, I am not using any backend operations... the page is only
displaying date time from the server.
The REAL requirement is to make sure that page get fresh copy from the
server and on hitting back button it should not through Page can not be
displayed error.

Can you pls help?

Randy Webb wrote:
ns21 said the following on 8/8/2006 2:46 AM:
How can the browser back button be disabled

Make sure there is no other page opened first. Otherwise, it can't be
disabled.
If the form is submitting information to other pages or
submitting to itself or using redirections.

Whether it is submitting information to another page, itself, to
nowhere, using redirects, is all irrelevant. You can't disable the back
button if the browser enables it.

I tried the tweaks like history.forward(1) in each page to prevent user
to navigate back but its not very effective.

It's not a "tweak", its a .001% effective hack is all.
The server side scripting is done using ASP.

ASP, PHP, PERL, it's irrelevant what server side language is used to
generate what the browser deals with.
you may ask that why at first place I want to disable the browser back
button, this is due to the following issue
http://groups.google.co.in/group/asp...a38b4635b32b88

Fix your back end and stop trying to fix the wrong problem. Your server
side code should be able to handle *anything* the client does - and -
recover from it without client side hacks to prop it up.
In absence of response from responsible MVPs,

I only know 1 responsible MVP.
I decided to provide a back button in the application that use
redirection mechanisms but since user always has back button on
browser, it makes the application error-prone.

If the Back button breaks your app, it was error-prone before the Back
button was discovered.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 8 '06 #3
ns21 wrote:
How can the browser back button be disabled If the form is submitting
information to other pages or submitting to itself or using
redirections.
The standard patten is to process the POST request then redirect (which will
be a GET request). If the user hits back they go to the form page, not the
form handler, so the data doesn't get reposted.

--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Aug 8 '06 #4
On 2006-08-08 08:46:31 +0200, "ns21" <ni**********@gmail.comsaid:
How can the browser back button be disabled If the form is submitting
information to other pages or submitting to itself or using
redirections.

I tried the tweaks like history.forward(1) in each page to prevent user
to navigate back but its not very effective.

The server side scripting is done using ASP.

you may ask that why at first place I want to disable the browser back
button, this is due to the following issue
http://groups.google.co.in/group/asp...a38b4635b32b88

In absence of response from responsible MVPs, I decided to provide a
back button in the application that use redirection mechanisms but
since user always has back button on browser, it makes the application
error-prone.

Thanks,
I doubt you can...
History object should not be accessible (at least on W3C compliant
browsers ...) .
If you are using Firefox, have a look on PrivilegeManager, but I don't
think you can change this behavior.

--

-- -- -- -- -- -- -- -- -- -- -- -- -- --
http://schoenenberger.free.fr

Aug 8 '06 #5
David,

This is a good option and it works for my small POC. but it cannot be
applied to this application as there is lot of inline code and
processing, its like performing the search and drill down pages, few
drill down pages also perform search resulting in more pages.

What is the main reason that the Page do not refresh automatically if
submit was Hit and back is pressed?

how do you handle this "submit hit + back enabled + NO page cannot be
displayed error" in large applications that strictly dont allow any
kind of cache?

David Dorward wrote:
ns21 wrote:
How can the browser back button be disabled If the form is submitting
information to other pages or submitting to itself or using
redirections.

The standard patten is to process the POST request then redirect (which will
be a GET request). If the user hits back they go to the form page, not the
form handler, so the data doesn't get reposted.

--
David Dorward <http://blog.dorward.me.uk/ <http://dorward.me.uk/>
Home is where the ~/.bashrc is
Aug 8 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Ralph Freshour | last post by:
Is it possible to inhibit the browser Back/Fwd buttons via PHP? Thanks...
21
by: Tony Marston | last post by:
If the use of the browser's BACK button is interfering with the operation of your web application then take a look at this article entitle "Back Button Blues" ...
7
by: zdrakec | last post by:
Hello all: I note in my application, that when I use Server.Transfer("somepage.aspx"), when the new page is loaded, and I click the Back button on the browser, that the previous page, when it...
3
by: Shimon Sim | last post by:
Hi Is it possible to make sure that the page doesn't show in browser history and won't effect Back button. The problem is that every postback shows as another entry for "Back" button and user...
2
by: Liming | last post by:
Hi, I have a multiview (with 10 views inside). Now on View2, I ask the user to uplaod a file and click Save to go to View3 and once they get to view3? If the user hits my "previous" button,...
15
by: tshad | last post by:
I was looking for a way to handle refreshes (user pressed refresh button) and found a piece of code to check if a Web page was refreshed but I can't get it to work. The code is:...
6
by: hemant.singh | last post by:
Hi all, I am trying to get a way by which I'll know exactly when user goes out of my site by clicking on close button in browser, So that w/e user click close button in browser, I can send a...
0
by: toeffetommy | last post by:
Hello, I need a piece of functionality developed for our Website and I need some technical advice on how get there. Essentially, what I want to develop is a browser-within-browser...
1
by: Randy | last post by:
I have an application with a datagrid and a button to export the grid to excel. For the most part this is working fine. Here's the export method: Private Sub btnExcel_Click(ByVal sender As...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.