I\'m sure this has been asked time and time again. And yes I\'ve searched. However, I\'m unable to find an example that clearly demonstrates what I\'m looking to accomplis
If your page is on the same directory level you can just use:
Response.Redirect("testing.aspx", false);
If your page is on application root you can use following command:
Response.Redirect("~/testing.aspx", false);
And finally, if you page is inside sub directory from current page you can use:
Response.Redirect("MyFolder/testing.aspx", false);