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.
Asked
Active
Viewed 136 times
0
-
Looks like you have a space in your variable name? – Paul Jun 09 '11 at 14:06
-
"ınital Catalog" is not an error message. Show us the compile error. – Jun 09 '11 at 14:35
1 Answers
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