ASP.NET Expressions — A Useful Feature
Posted by: AspNetResources.com articles, news and updates,
on 06 Nov 2005 |
View original | Bookmarked: 0 time(s)
Have you looked into ASP.NET expressions yet Now, that is a very useful feature. If any of you are developing a localizable product and ever needed to output language–specific text with minimum of code, you’ll love this one.
In 1.x “translated” text is returned by a resource manager based on the culture of the executing thread. In 2.0 that’s still the case. However, in 1.x it has always been a royal pain in the butt to actually display language-specic text on a page.
I’ve...