I am trying to write:

options.Title = "Русский текст";

and in compiled JS i am getting:

options.title = '\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd\ufffd \ufffd\ufffd\ufffd\ufffd\ufffd';

So all characters in the title are replaced with '\ufffd'. And i am getting "??????? ?????" instead of "Русский текст" into markup.

link|improve this question

57% accept rate
Can you also add what is the expected script that would make it work? What is the error you're getting? – NikhilK Apr 19 '11 at 11:27
Thank you for response. I have updated the question. – admax Apr 19 '11 at 21:37
feedback

1 Answer

up vote 2 down vote accepted

Try saving your source file (.cs) with another encoding like UTF-8 with signature (Codepage 65001). You can find this option under File -> Advanced Save Options in Visual Studio. This works for me with Turkish characters. Seems like ScriptSharp doesn't play well with single byte encodings.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.