So here is the code:

private ActionResult MyMethod()
{
    //do stuff
    return Redirect("/");
}

I have a bunch of different methods like this in my app. All behave well and redirect to the home page. But there is this one that redirects to http://mysite.com/#_=_ in FF and Chrome while it redirects to http://mysite.com/ in IE. And I don't want the named anchor added. Can you tell me what's going on and what I can do to fix this.

link|improve this question

I know nothing of ASP.NET, but this is interesting. I'm curious. – Rudie Dec 18 '11 at 19:44
I don't know the answer of why this is happening, but are you able to use a RedirectToAction() instead of Redirect()? I've never had an issue with RedirectToAction() and I don't think I've ever had a reason to use Redirect() instead. – hawkke Dec 18 '11 at 19:56
@hawkke If I use RedirectToAction it will change my url in the browser to mysite.com/home/index.html while I want the url in the browser to stay mysite.com – user277498 Dec 19 '11 at 5:11
@user277498 - It will only do that if you have your routing messed up. It should redirect to the root of the app if home/index is your default route. – Mystere Man Dec 19 '11 at 5:37
@MystereMan if I had my routing messed up, wouldn't all my return Redirect("/"); get messed up? As it happens, only one method behaves badly. All others behave fine. – user277498 Dec 20 '11 at 0:59
show 1 more comment
feedback

2 Answers

This should not happen. If it happens there is probably some plugin installed on your browser that does this. Try disabling all plugins and/or javascript.

link|improve this answer
Thanks! I agree but it does. I turned off JavaSript in both Chrome and FF and the problem remained. I also tried it from a different computer and it still showed on that computer. On that computer there are no Chrome extensions and all FF plugins and extensions are disabled. – user277498 Dec 20 '11 at 0:57
feedback

Are you using Facebook OAuth? I have the same thing happening but it is a result of using Facebook OAuth.

See: Facebook Authentication and strange redirect behaviour

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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