while creating the database, I have specified the COLLATE as SQL_Latin1_General_Cp1255_CI_AS.And regarding determining if the values coming from database is junk or not, i am downloading/extracting the data from the database into a MS Excel format file and also into a html file. At both the places i get junk characters.Here is my database creation scriptCREATE DATABASE [JSP_TRANSLATE_DB] ON (NAME = N'JSP_TRANSLATE_DB_Data', FILENAME = N'D:\JSP_TRANSLATE_DB\JSP_TRANSLATE_DB_Data.MDF' , SIZE = 21, FILEGROWTH = 10%) LOG ON (NAME = N'JSP_TRANSLATE_DB_Log', FILENAME = N'D:\JSP_TRANSLATE_DB\JSP_TRANSLATE_DB_Log.LDF' , SIZE = 56, FILEGROWTH = 10%)COLLATE SQL_Latin1_General_CP1255_CI_ASGO
In order to make sure that charset encoding for html can accomodate Hebrew characters, I added<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-8">
while creating the html. It did ask for Hebrew fonts to be installed for IE and I did that. Unfortunately, the Hebrew characters are still not getting displayed properly (different junk characters getting displayed now).Charset=ISO-8859-8 is for Hebrew, but if that corresponds to CP-1255 or not I am not sure