Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Bug in Opera 9 - Input string was not in a correct format
Re: Bug in Opera 9 - Input string was not in a correct format
06-01-2007, 2:32 AM
TomekR
Joined on 05-30-2007
Posts 2
Re: Bug in Opera 9 - Input string was not in a correct format
Reply
Quote
change culture on server helps:
protected override void InitializeCulture()
{
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
base.InitializeCulture();
}
View Complete Thread