I am writing an ASP.NET MVC application and am trying to use a .resx file to store error messages and other common lines. The problem is that the RESX generator creates inner classes, and they cannot be used in ASP.NET HTML using syntax, for example:
<%= Resources.SomeString %>
Is it possible to configure the parameter so that the RESX generator can create a public class and properties?
Eric schoonover
source share