How can I check for the existence of an aspx page before attempting to redirect to it, so I can handle that case in my C# code?
Response.Redict("~/SomePage.aspx")
But I want to make sure that page really does exist before I call it. It works off of a string after all, so maybe I have a type or something, or maybe I have not created that page yet.