in my project directory inside bin folder i check that GoogleTranslator dll is present or not, i check add reference but GoogleTranslator dll is not present in my ajax toolkit here i want to add name space for Ravsoft And GoogleTranslator dll how ?
Error 1 The type or namespace name 'RavSoft' could not be found (are you missing a using directive or an assembly reference?)
Error 2 The type or namespace name 'GoogleTranslator' could not be found (are you missing a using directive or an assembly reference?)
publicvoid translate()
{
using
(RavSoft.GoogleTranslator t =
new
GoogleTranslator())
maddyrafi198...
Member
12 Points
33 Posts
GoogleTranslator Dll
Apr 10, 2012 01:16 PM|LINK
in my project directory inside bin folder i check that GoogleTranslator dll is present or not, i check add reference but GoogleTranslator dll is not present in my ajax toolkit here i want to add name space for Ravsoft And GoogleTranslator dll how ?
Error 1 The type or namespace name 'RavSoft' could not be found (are you missing a using directive or an assembly reference?)
Error 2 The type or namespace name 'GoogleTranslator' could not be found (are you missing a using directive or an assembly reference?)
public void translate()
{
using (RavSoft.GoogleTranslator t = new GoogleTranslator())
{
t.SourceLanguage ="English";
t.TargetLanguage ="Tamil";
t.SourceText = TextBox1.Text;
}
}
Rajneesh Ver...
All-Star
38344 Points
6989 Posts
Re: GoogleTranslator Dll
Apr 10, 2012 01:21 PM|LINK
Do the same as given below:
http://weblogs.asp.net/jalpeshpvadgama/archive/2010/05/18/google-translation-api-integration-in-net.aspx
www.rajneeshverma.com
Keep Forums Clean || Use Alert Moderators.
bbcompent1
All-Star
33873 Points
8776 Posts
Moderator
Re: GoogleTranslator Dll
Apr 10, 2012 01:22 PM|LINK
Friend, I think that this translator is only for win forms. I just went to http://www.codeproject.com/Articles/12711/Google-Translator and it shows win forms and not asp.net.
bbcompent1
All-Star
33873 Points
8776 Posts
Moderator
Re: GoogleTranslator Dll
Apr 10, 2012 01:23 PM|LINK
That sample is a console application, not asp.net
maddyrafi198...
Member
12 Points
33 Posts
Re: GoogleTranslator Dll
Apr 10, 2012 01:25 PM|LINK
i want in web appln not in window appln...
bbcompent1
All-Star
33873 Points
8776 Posts
Moderator
Re: GoogleTranslator Dll
Apr 10, 2012 01:30 PM|LINK
I would suggest you look at this link: http://googlelanguage.codeplex.com/