1. Localizing process (from Michèle Leroux Bustamante)
    • Design pages by applying a combination of static HTML and ASP.NET server controls.
    • Prepare static areas for localization by wrapping them with the ASP.NET Localize control.
    • Provide proper control names to all server controls so that generated event handlers and resource keys can be easily recognized.
    • Create shared resources in the App_GlobalResources subdirectory. These can be .resx files that already exist, or new .resx files created to hold terms that will be shared across several pages.
    • Associate shared resources with control properties using explicit resource expressions, where appropriate. It is best to do this before generating local resources for the page.
    • Generate local resources while in Page Design view by selecting the Generate Local Resource menu item.
  2. Video How Do I: Create a Multi-Lingual Site with Localization? from ASP.NET 2.0 "How Do I" video series of Scott Stansfield
  3. Tutorials
  4. Advanced
  5. To be continuing...