I know that it may sound weird but please solve this.
I have a textbox and an autocomplete extender, I just need that when I type something in textbox then the auto fill options shall appear in hindi(other language) .
I know that I need to use some API, but I don't know How to achieve my goal . Please help.
string Text = txtbox1.Text;
Text = Google.API.Translate.Translator.Translate(Text, Google.API.Translate.Language.English,
Google.API.Translate.Language.Hindi);
label1.Text = Text;
This is how I translate in Hindi and show in a label on click event but I need autofill options same as google provides. I've used google api translate for this
Thank You