i am in a subfolder called "paypal" and im trying to redirect to my mvc page. I have tried these 3 ways The page I am trying to redirect form is a webform
Response.Redirect("../../SubscriptionView/Success/" + pdt.TransactionId.ToString());
Response.Redirect("../SubscriptionView/Success/" + pdt.TransactionId.ToString());
Response.Redirect("~/SubscriptionView/Success/" + pdt.TransactionId.ToString());
and keep getting
HTTP Error 404.0 - Not Found The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
... .com:80/paypal/subscriptionview/success/...
See how the redirect has not moved up from the paypal directory? What am I doing wrong?