Culture ‘tr’ is a neutral culture. It cannot be used in formatting and parsing and therefore cannot be set as the thread’s current culture.

You get this error, when you use neutral culture name to set culture of the application.     1 System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo("tr");     2 System.Threading.Thread.CurrentThread.CurrentCulture = ci;     3 System.Threading.Thread.CurrentThread.CurrentUICulture = ci; To prevent this error you can use explicit culture name like "tr-TR" or use the code below:     1 System.Globalization.CultureInfo ci = System.Globalization.CultureInfo.CreateSpecificCulture("tr");  Happy coding.

ASP.NET MVC 1.0 RC (Release Candidate)

Milliyet gazetesi Internet yazılım hizmetlerinde çalışmaya başladığımda arabam.com web sitesinin mevcut veritabanı ve sınıf kütüphanesi kullanılarak yeniden yazılamsı isteniyordu… .NET 1.1 de geliştirilmiş olan mevcut uygulamayı yeni teknolojilerle yazalım istedik… Visual Studio 2008 + .Net Framework 3.5 + MVC Framework Preview ile geliştirme yapma kararı alındı… Özellikle preview durumda olan bir framework kullanmak oldukça çılgın […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top