Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirect asp.net mvc page from business logic class

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

like image 454
Kyle Avatar asked Jan 14 '10 18:01

Kyle


1 Answers

Very ugly, anti-MVC, don't do in business layer, etc... but since you are asking:

var context = new RequestContext(
    new HttpContextWrapper(System.Web.HttpContext.Current), 
    new RouteData());
var urlHelper = new UrlHelper(context);
var url = urlHelper.Action("Index", new { OtherParm = "other value" });
System.Web.HttpContext.Current.Response.Redirect(url);
like image 109
Darin Dimitrov Avatar answered Nov 18 '22 05:11

Darin Dimitrov