Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use MVC Action Results from regular web forms (faking ControllerContext)?

We have a pluggable framework that returns ActionResult objects that render things to a browser. One late breaking requirement is that our plugins should be callable from a regular ASP.NET Web Forms application.

So far I have come up with this, which works for very basic ActionResults:

public class ActionResultTranslator {

    HttpContextBase _context;

    public ActionResultTranslator(HttpContextBase context ) {

        _context = context;
    }

    public void Execute(ActionResult actionResult) {

        ControllerContext fakeContext = new ControllerContext();
        fakeContext.HttpContext = _context;            

        actionResult.ExecuteResult(fakeContext);        
    }
}

You would call the above from a web form with:

protected void Page_Load(object sender, EventArgs e) {
   HttpContextWrapper contextWrapper = new HttpContextWrapper(this.Context);
   var translator = new ActionResultTranslator(contextWrapper);
   translator.Execute(new RedirectResult("http://google.com"));     
}

What else do I need to do to hook everything up? For example, what if I wanted to return a ViewResult?

like image 651
intoOrbit Avatar asked Dec 06 '25 14:12

intoOrbit


1 Answers

There aren't too many properties to fake on ControllerContext.

  • HttpContext - You've got this covered
  • Controller - As far as I can tell, no standard ActionResults care if this is left null
  • RequestContext - Will be populated automatically if left null
  • RouteData - Will be populated with an empty collection if left null.

So you're just left to worry that the ActionResult could depend on arbitrary keys being present in RouteData. A ViewResult should be happy as long as you populate action and controller so that it knows where to look for the view file. If you alter your code to provide a RouteData with those values, you should be OK.

like image 124
stevemegson Avatar answered Dec 08 '25 08:12

stevemegson



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!