0

I am trying to develop an ASP.NET web application on a Mac using Mono Project. But because of a character problem, it throws an error of 'ınital Catalog'. That happens because, when Mono compiles my code, it converts my 'I' s to 'ı' which is not an English word. So I can't write UserID = 1 or Initial Catalog = myDB in the code. How can I fix this? Thanks alot.

Anthony Faull
  • 17,549
  • 5
  • 55
  • 73
Yagiz Ozturk
  • 5,408
  • 7
  • 29
  • 44

1 Answers1

1

Found it. I deleted web.config code of

<globalization uiCulture="auto" culture="auto" />
Yagiz Ozturk
  • 5,408
  • 7
  • 29
  • 44
  • In Turkish a lowercase "I" is "ı", and a lowercase "İ" is "i". No other culture makes a distinction between dotted i and dotless i. See http://en.wikipedia.org/wiki/Dotted_and_dotless_I and http://www.codinghorror.com/blog/2008/03/whats-wrong-with-turkey.html – Anthony Faull Jun 14 '11 at 08:52