Click here to Skip to main content
15,906,303 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

Very Good morning to all,

I have table in sql server and I want to display that table in Gridview that to when i click the button i want to display that table in telugu language in Gridview.

Please Cloud any one help me out of this.

Thanks in Advance.
Posted
Updated 10-Jul-11 19:36pm
v2

I would not hope for automatic translation from one language to another. At best achievements of translation technology the results of translations are often ridiculously inaccurate. I'm afraid to say you will have to duplicate all string data in the database in two languages. You will have to split each database column with human-readable text data into two.

—SA
 
Share this answer
 
Try to google translate if telugu language is available. Another way you can maintain by database for example
suppose datatable has 3 field
1. ID
2. Name
3. Address

you just add more field for telugu language for example
1.ID
2.Name
3.Name_telugu
4.Address
5.Address_telugu

When you bind gridview with telugu language write a qry like
SELECT ID,Name_telugu,Address_telugu from table1

This result just add datasource of gridview then show the gridview content in telugu language.

If you want to back to english same way just change the qry like
SELECT ID, Name, Address from table1



Hope you will get more better solution from codeproject. best of luck

Thanks
 
Share this answer
 

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