I want to open a RedirectToAction in a new tab. Unfortuantely there is no overload that takes a htmlAttribute as with ActionLink
@Html.ActionLink("Text", "Action", new { parameters }, new { target="_blank" })
Is it possible to write an overload for RedirectToAction to do this from the Action. If so would you please post the working code for the overload.
I want to open the new tab programatically from the Action, not a link that has to be clicked. So please no answers on how to do it with an actionlink. I already stated I know how to do that.
Thanks,
Joe