How to check for an aspx page before trying to redirect it, so I can handle this case in my C # code?
Response.Redict("~/SomePage.aspx")
But I want to make sure that the page really exists before I call it. In the end, this works from a string, so maybe I have a type or something else, or maybe I haven't created this page yet.
source
share