Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ローカルホストでasp.netカレンダーを開こうとすると正常に動作しますが、プロジェクトを公開した後にftpでホストすると、「文字列が有効な日時として認識されませんでした」というエラーが発生します。どうすればよいですか?
私はおそらくあなたのグローバリゼーション設定に関係しています.web.configでシステム設定を上書きして、両方のマシンで同じ設定になっていることを確認してください. 例えば:
<configuration> <system.web> <globalization uiCulture="es" culture="es-MX" /> </system.web> </configuration>
以下のページに詳細情報があります。
方法: ASP.NET Web ページのグローバリゼーションのカルチャと UI カルチャを設定する