I am using Response.Redirect in my ASP.NEt to redirect to the same page but with a different query string. However, when the page redirects, for some reasons unknown, this hash #_=_
is being added to the page.
Here's the redirect code in C#:
Response.Redirect("~/signup/?type=facebookregistration");
return;
What causes this?