Avatar of Miguel Quintana
Miguel Quintana

asked on 

How to work with resx files in ASP.NET MVC 5

I'm wondering how to retrieve the strings of the resx files from the Razor View

<li>@Html.ActionLink("Contact", "Contact", "Home")</li>

Open in new window


I'm triying to call the resx file and retrieve the corresponding string this way:

<li>@Html.ActionLink([namespace.resourcefolder], "Contact", "Home")</li>

Open in new window


but I don't see the App_LocalResources in the Intellisense list after namespace

There is no much specific information about this on the internet
.NET ProgrammingASP.NETC#Visual Basic.NET

Avatar of undefined
Last Comment
Miguel Quintana

8/22/2022 - Mon