I have a ASP page.I am fetching data from database.In the database the character are all Russian.But when I fetch that data to show in the webpage it render as '?' marks.
oCommBM.Parameters.Append oCommBM.CreateParameter("@menu", adVarChar, adParamOutput,2000, "0")
I am passing the parameter like that.If instead of adVarChar I used aVarWCahr then it's showing the Russian character but the below contained not render properly.
I checked by execute store procedure from database.There it's showing fine. Also I add below 2 lines in the asp page.
Response.codePage = 65001
Response.Charset = "UTF-8"
I changed every possible encoding type from asp page code as well as from Notepad++ encoding type.
Any suggestion is greatly appreciated.Thanks in advance.