如何让CalendarExtender控件显示中文

我们都知道CalendarExtender控件默认显示的是英文,而且它没有任何属性或方法,可以显示中文。可是我们要显示中文怎么办呢。
我们可以在 asp:ScriptManager中加二个属性就行了就。
EnableScriptGlobalization="true"
EnableScriptLocalization="true"
<asp:ScriptManager ID="ScriptManager1" EnableScriptGlobalization="true" EnableScriptLocalization="true" runat="server" ></asp:ScriptManager>


这样就行了

你可能感兴趣的:(server,asp)