Strongly typed Resources in ASP.NET
Posted by: Rick Strahls WebLog,
on 22 Nov 2006 |
View original | NEW Bookmarked: 0 time(s)
If youve used WinForms application you might envy the fact that there you get strongly typed resources automatically for your RESX files the Compiler automatically generates a class that contains each of the resources as a property of the class. This is cool in many ways it makes it easier to discover available resources and it minimizes typos in accessing these resources in your code
ASP.NET doesnt have this particular feature at least in stock ASP.NET projects. Part of the reason for this...