在ftp ASP.Net上托管时日历不工作

时间:2012-09-28 11:50:29

标签: asp.net

当我尝试在本地主机上打开asp.net日历时它工作正常但是当我在发布我的项目后在ftp上托管它时,日历遇到错误,因为'字符串未被识别为有效的DateTime'。我们能做什么?

1 个答案:

答案 0 :(得分:0)

我可能与您的全球化设置有关,尝试覆盖web.config中的系统设置,这样您就可以确保在两台计算机上都具有相同的设置。例如:

<configuration>
   <system.web>
       <globalization uiCulture="es" culture="es-MX" />
    </system.web>
</configuration>

在下面的页面上,您可以找到更多信息:

How to: Set the Culture and UI Culture for ASP.NET Web Page Globalization