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
Re
I figured out how to get it working.
UrlHelper urlHelp = new UrlHelper(HttpContext.Current.Request.RequestContext);
response.Redirect(urlHelp.Action("PaymentError", "SubscriptionView", new { mailId = mailId }));
This returned me from the aspx page that i needed process the response from paypal back to my controller