Click here to Skip to main content
15,897,371 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have to insert a name that is in russian languae, which comes from Querystring.

when i am inserting that name. it is saving something like ??? ????????? ???.

How can i insert exact name, or how can i select exact name of already inserted data.
for eg: "Course M40005A «First Look: Windows Server 2012»/ Курс М40005А Первый взгляд: Microsoft Windows Server 2012" this data inserted as "Course M40005A ?First Look: Windows Server 2012?/ ???? ?40005? ?????? ??????: Microsoft Windows Server 2012"

please help me ASAP

Thanks
Posted

1 solution

Add a string in UTF-8 format with a query like this:

SQL
INSERT INTO russianTable (russianName) VALUES (N'Russian name')


Just precede the quoted name with a N
 
Share this answer
 
Comments
krishnaMurali 20-Oct-12 9:25am    
Thanks and yes.. if I insert directly the russian data, it is correct.
but, my scenario..and result is like below,
> getting name from drop down..no prob here
> sending that name as query string to another page ..no prob here
> requesting the query string in another page... problem occurs here..I am getting ???? ?? here.
please suggest what to do

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900