Skip to content

Instantly share code, notes, and snippets.

@ssvaidya
Created September 27, 2016 16:31
ASP.NET MVC Futures Redirect To Action
using Microsoft.Web.Mvc;
public ActionResult RedirectToStronglyTypedAction
{
return this.RedirectToAction(c => c.Index(myId));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment