Click here to Skip to main content
15,920,629 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How To Add Google Translator in Website????
Plz send m link Or any helpful code ....
Thanks in advance..
Posted

Hi,

Have a look here:
http://dotnetaid.com/how-to-implement-google-translator-api-in-asp-net/[^]
http://weblogs.asp.net/jalpeshpvadgama/archive/2010/05/18/google-translation-api-integration-in-net.aspx[^]

[Edit]

If you want to translate a complete page, try this:
C#
protected void Page_Load(object sender, EventArgs e)
{
      string originalLanguage = "en"; // change this into the original language of your page
      string newLanguage = "nl"; // change this into the language in which you want to translate your page
      string newLocation = String.Format("http://translate.google.com/translate?sl={0}&tl={1}&u={2}", originalLanguage, newLanguage, Request.Url.AbsoluteUri);
      Response.Redirect(newLocation);
}

If you do this, you redirect your users to the Google Translate page that translates the content of your web page.

Hope this helps.
 
Share this answer
 
v3
Comments
vijaykatake1 6-Jul-13 6:22am    
In above link code it change language of texbox data but i want to chane cmplete page of websit (in short complete website)..
so plz give me another link or any other solution.
its urgent..
thank you...
Thomas Daniels 6-Jul-13 6:36am    
I updated my answer.
vijaykatake1 6-Jul-13 6:44am    
when i used this code then it work properly but it display extra dropdown of language translator...and i want only single dropdown (here display something like google Taraduction ...i dnt want this so how it remove and rmove extra drop down)
plz help me...
Thanks in Advance..
Thomas Daniels 6-Jul-13 7:01am    
I don't find a solution for that. I'm sorry.
see this..:)

Google Translator[^]

try to search on Google for more help..:)
 
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