- Posted by Ian Suttle on February 21, 2009
- Filed under .NET 3.5 | ASP.Net MVC
This post details an ASP.NET MVC Action Filter to assist with localized site development. If you've got or want a site which supports multiple cultures using ASP.NET MVC localization you need to be familiar with setting CultureInfo values for the current thread and UI. The .NET Framework uses this info to do a few key things. First, if you're using resource files the framework knows which to pick up because the resource file name specifies the culture. Secondly the culture is used as a formatter argument for various methods such as ToString()..
[More]
- Posted by Ian Suttle on March 12, 2008
- Filed under .NET 3.5 | .Net Framework | ASP.Net | ASP.Net MVC
Routing in the new .NEW MVC Framework is a synch to customize. This post shows how to move route definitions out of the global.asax.cs and into the database..
[More]
- Posted by Ian Suttle on March 5, 2008
- Filed under .NET 3.5 | .Net Framework | ASP.Net MVC
Microsoft has release the ASP.NET 3.5 Extensions MVC Preview 2..
[More]