I don't understand why if I add parameters on my @Html.ActionLink() the root doesn't go in the correct way.
In fact if I use this
@Html.ActionLink("Torna alla lista", "Index", "VwOpenOrders")
The program rooting on "/VwOpenOrders" that is what I aspect.
If I add parameter like this
@Html.ActionLink("Torna alla lista", "Index", "VwOpenOrders", new { SearchLV = TempData["SearchLV"]})
It go on root "/VwFases?Length=12", where "VwFase" is the controller of the page where I launch the action link.
Please someone can help me? what am I doing wrong?
Thank you