Estuve probando con el idioma chino y salio todo normal, si te ayuda este código aquí lo tienes
Código:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Globalization;
using System.Threading;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Init(object sender, EventArgs e)
{
string vstr_Cultura = "zh-CN";
CultureInfo[] allCultures = CultureInfo.GetCultures(CultureTypes.AllCultures);
CultureInfo vobj_Culture = new CultureInfo(vstr_Cultura);
Thread.CurrentThread.CurrentCulture = vobj_Culture;
Thread.CurrentThread.CurrentUICulture = vobj_Culture;
List<string> vstr_ListaCulturas = new List<string>();
foreach (CultureInfo ci in allCultures)
{
vstr_ListaCulturas.Add(ci.Name);
Response.Write(ci.Name +"</br>");
}
}
protected void Page_Load(object sender, EventArgs e)
{
DateTime vdtm_FecActualizacion = DateTime.Now;
int viint_Dia = vdtm_FecActualizacion.Day;
string vstr_MesNombre = vdtm_FecActualizacion.ToString("MMM");
int viint_Anio = vdtm_FecActualizacion.Year;
Response.Write(viint_Dia.ToString() + "." + vstr_MesNombre + "." + viint_Anio);
}
}
Código HTML:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
</form>
</body>
</html>