
First create one table tbhindi in sql 2000
First create columns sno , username, fullname.
In the fullname column I store Hindi (UNICODE).

Then create a new WEBSITE.
In A Website
First you add a Google API for translating English to any language. On this location click on this link:
http://code.google.com/p/google-language-api-for-dotnet/downloads/detail?name=GoogleTranslateAPI_0.1.zip
On this link you download GoogleTranslateAPI_0.1.zip folder. Then create in a website a bin folder and put GoogleTranslateAPI.dll & Newtonsoft.Json.dll
after adding a bin folder with .dll then you create your .aspx page.
In .aspx page
First add controls; a textbox, a Button, a Label and a Girdview.
After naming the control write code for the Button.
On a Button1_Click
protected void Button1_Click(object sender, EventArgs e)
{
string Text = TextBox1.Text;
Console.WriteLine("Before Translation:{0}", Text);
Text = Google.API.Translate.Translator.Translate(Text, Google.API.Translate.Language.English,
Google.API.Translate.Language.Hindi);
Label1.Text = Text;
string constr1;
IFormatProvider culture = new CultureInfo("fr-Fr", true);
constr1 = ConfigurationManager.ConnectionStrings["constr"].ConnectionString;
con = new SqlConnection(constr1);
con.Open();
string sql = "insert into tbHindi(username,Fullname) values('" + TextBox1.Text + "',N'" + Label1.Text + "')";
cmd = new SqlCommand(sql, con);
int res;
res = cmd.ExecuteNonQuery();
res = 1;
con.Close();
GridView1.DataBind();
}
Conclusion
I think that's the solution to help for you.

Devesh AwasthiPosted Dec 11, 2015, 1:55 AM
error is [error code:403]Please use Translate v2. See http://code.google.com/apis/language/translate/overview.html
Devesh AwasthiPosted Dec 11, 2015, 1:54 AM
i have a problem Text = Google.API.Translate.Translator.Translate(Text, Google.API.Translate.Language.English, Google.API.Translate.Language.Hindi);
lavakush sharmaPosted Sep 19, 2014, 1:35 AM
[error code:403]Suspected Terms of Service Abuse. Please see http://code.google.com/apis/errors .How to resolve this error in convert language.
lavakush sharmaPosted Sep 19, 2014, 1:33 AM
Hi Sir,
SagarPosted Jun 17, 2014, 9:57 AM
is there any way to sort hindi data in grid
pardeep kumarPosted Apr 18, 2012, 11:49 PM
string text = "PARDEEP"; string translated = Translator.Translate(text, Language.English, Language.Hindi); Console.WriteLine(translated);
Lalitdutt ParsaiPosted Nov 21, 2011, 8:48 AM
thanks sir .
sarika jainPosted May 11, 2011, 3:28 PM
Could not load file or assembly 'System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
sarika jainPosted May 11, 2011, 3:14 PM
It is not worth it in v2.0 giving an error could not load file or assembly
Rambabu CHPosted Apr 8, 2011, 1:46 AM
Nice and smart