I am seeing the below error. I do a Response.Redirect(url) like I have in a number of my pages. For some reason this one does not work. It appends random stuff to the end. What would cause this?
Code:
protected void radBtnReset_Click(object sender, EventArgs e)
{
//Redirect to Its self....
Response.Redirect("~/Pages/ByEmail.aspx?");
}
URL in address bar when error occurs: http://localhost:17127/Pages/ByEmail.aspx%e2%80%8b
Error:
HTTP Error 404.0 - Not Found
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
Most likely causes:
•The directory or file specified does not exist on the Web server.
•The URL contains a typographical error.
•A custom filter or module, such as URLScan, restricts access to the file.
Things you can tr ...
Go to the complete details ...