When Firefox updated to version 6 recently, a site I'm working on severely broke.

The site operates normally when browsing to any page without a hash tag but if you try to navigate to a page with a hash tag (e.g. #test) or refresh the page once a hash tag was applied, the page refreshes as quickly as it can infinitely.

This is a Asp.Net MVC 2 site created around a year and a half ago.

link|improve this question

feedback

2 Answers

up vote 28 down vote accepted

Turns out, this is an issue with an old version of MicrosoftAjax.js (the one that comes installed with Asp.Net MVC 2).

Open up the MicrosoftAjax.debug.js file and check the file version number. The top of this file will look like this if this is your problem:

 // Name:        MicrosoftAjax.debug.js
 // Assembly:    System.Web.Extensions
 // Version:     4.0.0.0
 // FileVersion: 4.0.20526.0

That's the version that contains this bug. The latest file version as of this writing is 4.0.30205.0. Upgrade to the latest version and the problem goes away. As mentioned in a comment by Nathan Fox, I got the latest version from the Microsoft cdn and more specifically the minified and debug versions.

For the curious, I traced the problem down in the javascript file.

The buggy version includes:

 if ((Sys.Browser.agent === Sys.Browser.Firefox) && window.location.hash && (!window.frameElement || window.top.location.hash)) {
      window.history.go(0);
 }

Which was corrected to the following in the newer version:

 if ((Sys.Browser.agent === Sys.Browser.Firefox) && window.location.hash && (!window.frameElement || window.top.location.hash)) {
      (Sys.Browser.version < 3.5) ?
      window.history.go(0) :
      location.hash = this.get_stateString();
 }
link|improve this answer
2  
Wow. Thanks for this. I had this problem a few days ago and didn't expect the javascript to be the issue... by happy chance I found this question and woot, now it's fixed. – smdrager Aug 23 '11 at 15:10
Thanks for figuring this out, this saved me a ton of time! – Nathan Fox Aug 23 '11 at 15:27
You can find links to the latest .js files on the MS CDN page at asp.net/ajaxlibrary/CDNAjax4.ashx . – Nathan Fox Aug 23 '11 at 17:12
+1 this is a very tricky one. Thanks! – Francisco Aug 25 '11 at 19:20
I have exactly the same symptoms but I use jQuery instead of MicrosoftAjax.debug.js. Do you know any solutions for it? – TOUDIdel Aug 31 '11 at 7:20
show 4 more comments
feedback

Thanks for your contribution. However, after updating, I still have same problem with FF only (I'm running v11).

I have double checked the code regarding location.hash = this.get_stateString(); and double updated all relevant files, (MicrosoftAjax.debug.js, MicrosoftMvcAjax.js and so forth), but the problem with the reloading constantly/ infinite page refresh remains.

P.S. I dont think that the old versions of the ms ajax files are the problem. I'm saying this because I'm working with an project (Nerddinner) that uses older version of MicrosoftAjax.debug.js and this project has no issues with firefox.

link|improve this answer
I found the solution. Following to files must NOT be included, otherwise search will continue in an infinite loop <script src="/Scripts/MSAjaxHistoryBundle.js" type="text/javascript"></script> <script src="/Scripts/GeoLocation.js" type="text/javascript"></script> – userSamarHTC Apr 5 at 14:49
I have removed another script (MicrosoftAjax.js) and it works fine. – Hadas May 20 at 10:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.