ajax calendar 控件中文显示问题解决

借鉴其他网站的内容

 

ajax 提供了calendar 控件,可是界面为英文。

在 AJAXASP.NET.CN 找到了问题的答案。

解决方法如下:

当前页面的语言设置为:中文(中华人民共和国) 它将根据浏览器的语言选择进行变化。 这里我们需要设置两个页面属性 Culture="auto" 和 UICulture="auto"。你可以在 MSDN上获得更多的这方面的资料, MSDN 文章。

需要适应多语言的条件还有一个就是,在页面上的 ScriptManager 需要设置两个属性:EnableScriptGlobalization="true" 和 EnableScriptLocalization="true".

转载自http://www.ajaxasp.net.cn/Demos/Calendar/Calendar.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Calender.aspx.cs" Inherits="Calender" Culture="auto" UICulture="auto"%>

    <asp:ScriptManager id="ScriptManager1" runat="server" EnableScriptGlobalization="true" EnableScriptLocalization="true">
        </asp:ScriptManager>

你可能感兴趣的:(ajax calendar 控件中文显示问题解决)