How can we pass angularjs expression/ varibale to asp.net mvc actionlink ?
Here is my asp.net mvc actionlink code
@Html.ActionLink("{{row.x}}", "Details", "Info", new { id = "{{row.x}}" }, null)
In the first parameter {{row.x}} works fine as it displays value but when being passed as route parameter it retains itself as {{row.x}} and does not evaulate.If i remove quotes it doesnt compile.