Создайте файлы ресурсов для каждого языка, который вы хотите поддержать, для упомянутых ниже.
альтернативный текст http://geekswithblogs.net/images/geekswithblogs_net/dotNETPlayground/resx.gif
В зависимости от языка / текущей культуры пользователя, прочитайте значения из соответствующего файла языковых ресурсов и отобразите в метке или в MessageBox. Вот пример кода:
public static class Translate
{
public static string GetLanguage()
{
return HttpContext.Current.Request.UserLanguages[0];
}
public static string Message(string key)
{
ResourceManager resMan = null;
if (HttpContext.Current.Cache["resMan" + Global.GetLanguage()] == null)
{
resMan = Language.GetResourceManager(Global.GetLanguage());
if (resMan != null) HttpContext.Current.Cache["resMan" + Global.GetLanguage()] = resMan;
}
else
resMan = (ResourceManager)HttpContext.Current.Cache["resMan" + Global.GetLanguage()];
if (resMan == null) return key;
string originalKey = key;
key = Regex.Replace(key, "[ ./]", "_");
try
{
string value = resMan.GetString(key);
if (value != null) return value;
return originalKey;
}
catch (MissingManifestResourceException)
{
try
{
return HttpContext.GetGlobalResourceObject("en_au", key).ToString();
}
catch (MissingManifestResourceException mmre)
{
throw new System.IO.FileNotFoundException("Could not locate the en_au.resx resource file. This is the default language pack, and needs to exist within the Resources project.", mmre);
}
catch (NullReferenceException)
{
return originalKey;
}
}
catch (NullReferenceException)
{
return originalKey;
}
}
}
В приложении asn asp.net вы будете использовать его следующим образом:
<span class="label">User:</span>
Вы бы сейчас поставили:
<span class="label"><%=Translate.Message("User") %>:</span>