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.