In my .net 3.5 web application, I redirect users to another page using response.redirect.
This works in all 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);
stuart
source
share