I am trying to use the @Html.ActionLink and @Url.Action in my razor pages.
for this I have the following code in my view
<div Id="SetLanguageUrl" value="@Url.Action("SetLanguage", "Language")"></div>
@Html.ActionLink("Test", "SetLanguage", "Language")
I do not get an error on this, but both do not resolve the url as can be seen in the browser development tools screenshot.
Anybody know what I could be missing?
