views:

627

answers:

2

Hi,

In my .net 3.5 web app i redirect users to another page using response.redirect.

This works in all ie browsers but not in firefox browsers. i have no idea why?

Response.Redirect("~/"+ GlobalConsts.ARTICLE_ANALYSER_URL +"?"+ GlobalConsts.QUERYSTRING_KEY_ONE + 
            SessionHandler.RedirectToArticleID + GlobalConsts.QUERYSTRING_KEY_TWO + 
            SessionHandler.RedirectToArticleParentOrChild);
A: 

In firefox, check your about:config setting network.http.redirection-limit (which should be greater than 1).

A quick hint for general development troubleshooting with FireFox: Get the Firebug extension.

Alex
I've checked that setting and its set to 20, still not sure what the problem could be....
+2  A: 

Try installing this Firefox extension and recording the headers that are sent to the client:

https://addons.mozilla.org/en-US/firefox/addon/3829

The headers may give you some more insight into what is going wrong.

Dan Herbert