I'm doing a RedirectToAction like this:
return RedirectToAction("index", "mycontroller", new RouteValueDictionary(
new {
a = 1
}
));
But when I'm redirected, the URL has some odd characters at the end, namely #_#_
so it looks like this:
http://mysite.com/?a=1#_#_
I'm a little confused how those characters are getting there, seeing as I'm not appending them. Any ideas?