Below screenshot will be the example where you can see the text that we write on text box will convert into selected language.
To translate text into multiple language we need to call webservices.There are multiple number of service code available in google so it will not be a problem.you can select anyone and can create for your site.
string uri = "http://api.microsofttranslator.com/v2/Http.svc/Translate?appId=" + appId +"&text=" + textvalue + "&from=" + from + "&to=" + to;
Screenshot:1
Screenshot2:
Please find the attached code for language translator.
Hope this article will help you in creating translator related stuffs.Give me shout if you need clarification.
To translate text into multiple language we need to call webservices.There are multiple number of service code available in google so it will not be a problem.you can select anyone and can create for your site.
Code logic:
string uri = "http://api.microsofttranslator.com/v2/Http.svc/Translate?appId=" + appId +"&text=" + textvalue + "&from=" + from + "&to=" + to;
Screenshot:1
Screenshot2:
Please find the attached code for language translator.
Hope this article will help you in creating translator related stuffs.Give me shout if you need clarification.
Hi friend,
ReplyDeleteaccording to ur article, I made a websit by using asp.net "VB.net". I need to create listBox that consist of many languages in masterpage to convert the page from english to other language. I need ur help in this point?