Link to home
Start Free TrialLog in
Avatar of Crystal Rouse
Crystal RouseFlag for United States of America

asked on

Building an Action Link to another Area

I"m trying to build an Action Link to another Area.  The link I have is:

 @Html.ActionLink(Model[i].ID, "Details", "Orders", new { Area = "Order" }, new { id = Model[i].ID }, new
                       {
                           @target = "_blank"
                       })

Open in new window


I"m getting errors. Is this the correct way to build an Action Link to another Area?  The Link works correctly within the Order Area.
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Crystal Rouse

ASKER

Thanks! That worked!