I'm using google translate to translate lots of words which I then store in DB, using this code:
string txt = Translator.TranslateText("Cosmetics", "en|sr");
Response.Write(txt);
Translated text (string txt) shows correctly in browser: Козметика
but source for result looks like this: Козметика
Problem is I dont want to put that resulting scrambled string txt in DB, but instead want to place 'Козметика' same as I would be doing that from TextBox input. So what is basically going on here ?
I suppose it has to do something with codepages and unicode encoding.
Thanks
Daniel