browser back button doesnt work in cached environment
The back button just causes my page to refresh. Is there a way around this without disabling the cache? ...
The back button just causes my page to refresh. Is there a way around this without disabling the cache? ...
Hi, I was wondering if anyone has seen this issue before. I have two button on a webpage. When I navigate away from the page and hit the back button to return the value of one button is placed in the value of the other. E.g <input class="SmallData" type="submit" id="logButton" value="Log In" tabindex="93"></input> <input class="btn"...
I'm using an iframe to display content that has links. When the user clicks around in the iFrame and hits "back," it goes back in the iFrame. This behavior is OK. However, once they're back to the first page of the iFrame and they hit "back" again, the entire window is taken back to the previous page. This is unwanted. To prevent th...
Ever stumbled on a tutorial that you feel is of great value but not quite explained properly? That's my dilemma. I know THIS TUTORIAL has some value but I just can't get it. Where do you call each function? Which function should be called first and which next, and which third? Will all functions be called in all files in an applicatio...
What's the best way to implement "Back to Search Results" in an ASP.NET application? I've been letting users do the BACK button in the browser, but they always get a prompt to resubmit the form. Is there an effective way to work around this resubmit? Should I cache the search criteria/url in session and redirect them when they press '...
Hi, I have a pretty simple problem which I have not been able to fix myself (I am having trouble manipulating iframes). Basically, go to say this page.... http://andrew.koallo.ca/new/393NelsonSt-JordanFisher click on "Click here to Map"...and a map should load up for you....now if you his back once...it will only take back the iframe...
Has anyone been able to get jQuery UI Tabs 3(Latest version) working with the back button? I mean if the user hits the back button they should go to the previously visited tab on the page, not a different page. The history plug in sounds like it can work, but i cant seem to make it work with ajax loaded tabs. If anyone has managed to ...
In winforms there is a function "BringToFront" that moves a form to the top of the Z-Order. Is there a way to do the opposite--push a form to the back? ...
Hi, I am developing a rails app. (I don't think this is a rails-specific problem) There's a reservation process which is consisted of 3 steps. When a user is on step 2 page, if the user clicks 'Previous' button, the form data in step 1 should be the same as before. I attached "history.go(-1);" to the 'Previous' button. It works on my ...
I have created a new SharePoint 2007 MOSS Intranet. Our admin people are purchasing backup/restore software and I will eventually have to verify a restore of the farm backup they create. Has anyone got some suggestions on a best practice for this? Ours is a small 2-server farm built with VMWare VMs on SAN. How will I know that the restor...
I have a page with several checkboxes. I check a few of them and go to the next page, when I come back on this page, these checkboxes need to remain checked as they were before navigating to another page. Need to do it with Javascript. Any clue?? ...
Hi, My application is in Perl. Here, for some pages the request is getting submitted twice, that is causing browser's back button history. I am able to see two requests for the same page in the back button's history. Hence, not able to go back in a single click. This issue is coming only for FireFox and not consistent. Can you please su...
Hi gurus, Thanks again for helping me with this simple solution My scenario is: I have a Jquery + AJAX + CodeIgniter web page where I have many divs like <div id="team"> </div> <div id="wp"> </div> <div id="phase"> </div> <div id="tasks"> </div> On opening the page the page will contain a table with some links in div team. When I clic...
I'm new to mvc so I don't know if there is a trick to this or not. When a user runs a search on a site I'm building and I take them to the results page, if I click the back button the search form is empty. Is there some way to keep the form fields populated as they were when going back (without resorting to session)? Thanks. ...
Hi, I'm disabling groups of radio buttons when a user clicks a checkbox, just using raw javascript and the disabled property. My function is trivial: function toggleEnabled(elementId) { e = document.getElementById(elementId) e.disabled = !e.disabled; } and it is called with the onClick event like onClick="toggleEnabled('radio_di...
What is the best way to stop a form from being reprocessed when a user hits a Back button? I'm following the Post/Redirect/Get pattern, so I don't have a problem if F5 is pushed, but the back button still provides the opportunity to resubmit the form. If this form is a credit card processing page, this is bad. This question has been a...
I have one View and one Controller in my ASP.net MVC Application. I have one "Submit" button & one "Cancel" button in my view. When I click any of the botton below action will be triggered. AcceptVerbs(HttpVerbs.Post) public ActionResult Result() { } Now the Question is how i will know in my public ActionResult Result() , whethe...
In my (school) website we use Iframes to display class blogs (on blogger). This works well EXCEPT if the user then clicks on (say) a photo inside the iframe. Blogger (in this case) then displays the photo in the whole browser window and the back button loops; that is if the back button is hit, the browser (IE, FF, Chrome) stays on the ...
Hello I am trying a new functionality for my web site. I want to do simple navigation by hiding/showing elements. For example, when a user clicks a "details" button on some product, I want to hide the main div and show the div containing the details for the product. The problem is that to go back to the previous "page", I have to und...
I have two forms. On Form 1, I have this screen layout: <detail section> hyperlink 1 hyperlink 2 etc <detail section> When I click a link on Form 1, for example, hyperlink 1, this takes me to Form 2. From Form 2, I have a link called "Go Back" to go back to Form 1. Usually, I would just use history.back(); or history.back(-1); to ...