Tagged Questions
The back-button tag has no wiki summary.
19
votes
16answers
2k views
Is there a way to keep a page from rendering once a person has logged out but hit the “back” button?
I have some website which requires a logon and shows sensitive information.
The person goes to the page, is prompted to log in, then gets to see the information.
The person logs out of the site, and ...
16
votes
6answers
6k views
Preventing iframe caching in browser
How do you prevent Firefox and Safari from caching iframe content?
I have a simple webpage with an iframe to a page on a different site. Both the outer page and the inner page have HTTP response ...
15
votes
12answers
9k views
Disabling Back button on the browser
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 ...
11
votes
3answers
11k views
android - exit application code
I have an application wherein on homepage i have buttons for navigation through the application.
In that I have a button "EXIT" which when clicked should take user to home screen on the phone where ...
11
votes
4answers
11k views
ASP.NET authentication login and logout with browser back button
I am looking for a solution for user use the browser's back button to navigate to previous page once logged out.
I have a web application build in asp.net and using a custom membership provider for ...
11
votes
6answers
2k views
Back Button Handle A Dynamic Form
I have a form with an array of text fields. The user (through javascript) can add an arbitrary number of text fields to the form. After submitting the form and pressing the back button the form ...
9
votes
2answers
18k views
Android - How To Override the “Back” button so it doesn't Finish() my Activity?
I currently have an Activity that when it gets displayed a Notification will also get displayed in the Notification bar.
This is so that when the User presses home and the Activity gets pushed to the ...
6
votes
2answers
770 views
How to detect back button and new window?
I've no doubt that these are probably documented on the internet somewhere and indexed by Google - but after wading through pages and pages of links to discussions about disabling the functionality I ...
6
votes
1answer
337 views
Enable browsers to “remember” form values when using jquery?
See: http://friendfeed.com/paul/2b7ddce5/jquery-1-3-breaks-bfcache-because-it-binds
I've got a form in my web app, and if the user submits it and presses the browser BACK button the form values are ...
6
votes
2answers
2k views
Prevent user from going back to the previous secured page after logout
I have the requirement that the enduser should not be able to go back to the restricted page after logout/signout. But currently the enduser is able to do that by the browser back button.
Basically, ...
6
votes
2answers
806 views
Back / Forward buttons and usability
The Back and Forward buttons in a browser or browser-like application navigate temporally (sequence in which user navigated pages), which may not necessarily reflect the logical order of the pages.
...
5
votes
1answer
193 views
How do I stop people using the back browser button after they have left my site so they cannot return?
I actually need this as a safety feature - the subject of my site is sensitive (domestic violence) - we have a safety area on the site and if clicked the person is taken out of the site to a 'safe' ...
5
votes
4answers
1k views
Detect if the user has used the back button
My webpage runs a javascript function when the page is loaded. However, I don't want the function to run if the user comes back to this page using the back button. How can I prevent this using ...
5
votes
2answers
4k views
Disable navigationitem backbarbutton
How do I disable the backbutton in a navigationcontroller?
When I hide the button like so,
self.navigationItem.hidesBackButton = TRUE;
the buttonarea is still tappable.
5
votes
2answers
721 views
browser back acts on nested iframe before the page itself - is there a way to avoid it?
i have a page with dynamic data loaded by some ajax and lots of javascript.
the page contains a list from which the user can choose and each selected value loads new data to the page.
one of these ...
5
votes
2answers
2k views
How can I show a custom image in navigation bar back button instead of default buttons which are shown by nav bar itself
On navigating to any view in an app which has navigation controller implemented, it shows a back button to go to the previous view. Is there a way I can use custom image instead of the default one?
4
votes
2answers
98 views
How to deal with users who click “Back” button after sign out
I show a message "You are not logged in" - for guests who click a button "submit" on my page. Surely, for logged in users I want to not show the message. I coded this in this way:
<c:if ...
4
votes
2answers
727 views
Browser's back button disables randomly in ASP.NET application
On my two-page web application, users progressively enter info and make selections on page one. When done, they click a 'Generate' button that navigates to page two. Users print that page and hit the ...
4
votes
2answers
277 views
How to replicate the back button?
I understand that the only way to change the color of the text of the back button is to make your own custom button:
self.navigationItem.backBarButtonItem = yourCustomBackButton;
My question is: ...
4
votes
2answers
545 views
Handling Tombstoning and Back key properly for performance reasons?
Is there a best practice for handling tombstoning and back key properly?
As it is stated in the MSDN docu you should save transient data in the OnNavigatedFrom method. Ok, so the code for saving ...
4
votes
6answers
2k views
How do I make Firefox reload page when back button is pressed?
I have tried every combination and permutation of meta tags that are supposed to stop a page from being cached, but Firefox STILL caches the page! I just need the URL to reload when a user presses ...
4
votes
2answers
8k views
Android - onBackPressed() not working
I have an application building against Android 2.1 and I want to override the back button.
I have followed the example here:
http://android-developers.blogspot.com/2009_12_01_archive.html
And my ...
4
votes
1answer
149 views
How to revert to content of a Dijit text box when browser back-button is clicked?
I am using a Dojo Textarea Dijit to input and submit text (to be processed).
I found that after submiting, if a browser back-button is pressed (IE8, Firefox) unlike regular HTML Textarea, I return to ...
4
votes
3answers
839 views
Safari and Chrome modifying form data on back button
I getting this weird issue in Safari & Chrome (works in Firefox and IE).
I start off with this checkbox list which has the first item 'A' checked, and item 'B' and 'C' unchecked
I then navigate ...
4
votes
3answers
3k views
back commandbutton in jsf
how would one implement a back-button as a commandbutton that works universally? with back button i don't mean the browser-button, but rather a button that sits somewhere on the page. it is not always ...
4
votes
3answers
2k views
Warning: Page Has Expired
I've added the following code to my masterpage (Page_Load) so once a user logs out they will not be able to use the back button to see the page they were previously at.
Response.Buffer = true;
...
4
votes
14answers
8k views
Prevent Use of the Back Button (in IE)
So the SMEs at my current place of employment want to try and disable the back button for certain pages. We have a page where the user makes some selections and submits them to be processed. In some ...
3
votes
1answer
125 views
How FB refreshes the page without reloading it (xmlHttpRequest) but Back button still works?
How FB refreshes the page without reloading it (xmlHttpRequest) but Back/Forward Buttons still work as usual?
It's not about using history.pushState() methods. PushState() only changes URL-string but ...
3
votes
3answers
155 views
Android - Stop AsyncTask when back button is pressed and return to previous Activity
I've an AsyncTask and I want it to stip execution when back button is pressed. I also want the app to return to the previous displayed Activity. It seems I've managed in stop the Task but the app ...
3
votes
4answers
262 views
jQuery mobile loads a page into DOM even when I don't ask it to
Here is the scenario:
(fyi, in the following, when I say 'window.location=...' it is triggered by a button tap)
I have three pages: 1.html, 2.html, 3.html. I navigate following way:
1.html --- ...
3
votes
1answer
69 views
regarding distorted back button on iOS app using UINavigationController
I am using UINavigationController in my app. In most of the iPhones I tested its fine. However, on an iPhone4 the back button is sometimes (not always) distorted.
Can anyone kindly tell me if ...
3
votes
2answers
844 views
Chrome doesn't cache hidden form field values for use in browser history
I have a ASP.Net web form that contains both text box fields and hidden fields. The hidden field values are modified dynamically using client side JavaScript. Posting the form, inspecting the values ...
3
votes
3answers
3k views
Handling Android hardware Back button
I have an onKeyDown event which is only needed for handling the Up and Down hardware keys in my app. For these it returns true, as they are handled.
For anything else it returns false which I ...
3
votes
4answers
3k views
Can I update window.location.hash without having the web page scroll?
Using JavaScript, is there a way to update window.location.hash without scrolling the web page?
I have clickable title elements that toggle the visibility of a div directly beneath them. I want the ...
3
votes
3answers
2k views
Best Way For Back Button To Leave Form Data
I'm creating a web page based on user input from a form. After the user sees the generated page I want to allow them to press the back button and make changes to the form. I would like to display ...
3
votes
5answers
6k views
How to find whether the user clicks browser back button or Refresh button
I need to find whether the user clicking the browser back button or Refresh button.
I need to redirect the page to Error page when he clicks the back or refresh button. How to do this.
I need to do ...
3
votes
8answers
2k views
How can web form content be preserved for the back button
When a web form is submitted and takes the user to another page, it is quite often the case that the user will click the Back button in order to submit the form again (the form is an advanced search ...
3
votes
4answers
2k views
What's the best way to deal with cache and the browser back button?
What's the best way to handle a user going back to a page that had cached items in an asp.net app? Is there a good way to capture the back button (event?) and handle the cache that way?
2
votes
1answer
160 views
Hashchange events with the Back Button in the Backbone Router/History
I'm using the following system configuration:
Chromium 14.0.835.202 on Ubuntu 11.04 using Backbone 0.5.3
A Backbone Router with the following routes and callbacks defined:
, routes: {
...
2
votes
2answers
129 views
Android: clicking TWICE the back button to exit activity
I've noticed this pattern in a lot of Android apps and games recently: when clicking the back button to "exit" the application, a Toast comes up with a message similar to "Please click BACK again to ...
2
votes
1answer
140 views
Which method is called when back button clicked in navigation controller?
I want to save DB when the back button clicked in navigation controller.
so I would insert code in method.
What method is called when back button clicked in navigation controller?
2
votes
2answers
95 views
Double clicking on back-button causes site to go back two pages
If I have a page structure with three of more pages where p1 links to p2 which links to p3, and I double click on the back button on p3. That will cause the page to go back to p2 and then instantly ...
2
votes
1answer
126 views
Hash change event in ajax (javascript)
I am actually trying to enable user to bookmark pages and for this, i am using hash change event of javascript. Here is my code:
<script type="text/javascript">
function hashchk()
{
...
2
votes
1answer
181 views
Clear focus EditText when back button is pressed when softkeyboard is showing
I know that there are quite some questions out here regarding this question. But non of them have the answer that I'm looking for.
I've got 7 ET inside a ScrollView. When I start the application no ...
2
votes
3answers
312 views
Unable to change text and text color of navigationitem's back button
I am trying to set the backbutton text color (to red) of my navbar using the code below. (NOTE: The code below is already in the 'previous' view controller, in this case in the 'Popular' view ...
2
votes
2answers
649 views
UINavigationController and UINavigationBarDelegate.ShouldPopItem() with MonoTouch
How do I pop up an UIAlertView when the back button of a UINavigationBar (controlled by a UINavigationController) was tapped? Under certain conditions, I want to ask the user an "Are you sure?" type ...
2
votes
1answer
339 views
Android: menu and back button stop working
For my android app I have multiple edittexts on the main screen. If i have the first edittext in focus the menu/back buttons operate fine, if i have any of the other edittexts in focus than neither ...
2
votes
2answers
478 views
Fake KeyEvent doesn't work *exactly* like “real” button. Why?
I am trying to invoke my main activity's onKeyDown() with KEYCODE_BACK, so that it behaves as if I pressed the 'back' button myself. I do that using the following code:
KeyEvent goBackDown = new ...
2
votes
1answer
644 views
How do I implement back button support on a form in Wicket?
I have a search page with a tabbed panel, with a form within each tab (see code below), that when submitted searches the database for hits. However, back button support on this form is not working ...
2
votes
3answers
519 views
get ajax hash url on page load
so say I set a hash when i do an ajax call:
example: http://example.com/#hash.html
if I load another page and click on the backbutton, how would i detect the hash and extract the url on load?
The ...