Hello,
We use ASP.NET 2.0 scheme for localization. By default we support two localization schemes: default (English) and ru (Russian). Localization Culture and UICulture can be set into
<%Page %> directive.
You can write something like this into your aspx file:
1.
Code:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="PhotoEditorDefault"
Culture="auto" UICulture="auto" meta:resourcekey="PageResource1" Theme="Standard" %>
In this case Culture and UICulture will be chosen according to Browser localization options. You can set them in IE: Tools->Internet Options -> General -> Languages... Click "Add" in the opened window to add English[en] and Russian[ru] localizations. Set Russian or English to top and refresh page to see another translation). In Firefox: Tools-> Options -> Additional -> Common -> Languages.
2.
Code:<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="PhotoEditorDefault"
Culture="ru-ru" UICulture="ru-ru" meta:resourcekey="PageResource1" Theme="Standard" %>
In this case Russian[ru] culture will be used for this page.
Sincerely yours,
Sergey Peshekhonov.
Aurigma Technical Support Team.