I am calling a static method within my business logic layer that, for purposes I won't mention here, needs to do the redirecting itself rather returning information back to the controller to do the redirect.
I figure I need to use the HttpContext object but am struggling with creating the route. I can't simply do context.Response.Redirect("someController/someMethod) because I need to include parameters for the action controller that I"m sending the user to.
Assuming this is correct:
HttpContext context = HttpContext.Current;
Can anyone please provide some syntax help with how to create a route using an object like:
new { Controller = "MyController", action = "Index", OtherParm="other value" }
TIA