When Selecting/Inserting into my SQL Server 2008 database, Central European characters are being converted.
For example:
Select 'Kutenič'
Returns:
Kutenic

Why is this? And how can I prevent this from happening? Would my ASP.NET Web Application have a similar problem?
Use the
NprefixWithout it the string will be cast to the code page of your database’s default collation.
Or set your database’s default collation to one of the following if that is more appropriate for your locale.