When we be able to use Standard Asp.Net 2.0 (3.5) Localization?
I like to work with Strongly Typed Localization Expressions.
In App_GlobalResources i create:
ArticlesMoudule folder:
Module1UC.resx -> default fallback
Module1UC.nl-NLT.resx -> Dutch localized resources
If we could use the standard Asp.Net localization ,
if I create these resources , then I can access them, everywhere in my usercontrols that belong to my module,
like this:
using Resources;
string s = Module1UC.MyButtonText;
It is not better than the DotNetNuke localization implementation?