I am using bing translation TranslatorService to translate the text and display it on the label.
I have tried to use the update panel like below:
<asp:UpdatePanel id="UpdatePanel1" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:Label ID="ErrorMessageLabel" runat="server" Height="200" Width="150"/>
<asp:Button ID="TranslateButton" runat="server" Text="Translate" OnClick="TranslateButton_Click"/>
</ContentTemplate>
</asp:UpdatePanel>
My code behind is like below:
using (TranslatorService.LanguageServiceClient client = new TranslatorService.LanguageServiceClient())
{
string inputedText = null, translatedText = null;
TranslatedLabel.Text = "";
bool textMatched = false;
int count = 1;
inputedText = TextBox1.Text;
do
{
if (count % 2 == 0)
{
translatedText = client.Translate(appId, inputedText, TranslateToDropDown.SelectedValue, TranslateFromDropDown.SelectedValue, "text/html", "general");
}
else
{
translatedText = client.Translate(appId, inputedText, TranslateFromDropDown.SelectedValue, TranslateToDropDown.SelectedValue, "text/html", "general");
}
TranslatedLabel.Text += "\n " + translatedText;
inputedText = translatedText;
if ((string.Equals(TextBox1.Text, translatedText)) || (count >= 25))
{
textMatched = true;
}
if (count >= 4)
{
if (string.Equals(TranslateListBox.Items[count - 1], TranslateListBox.Items[count - 3]))
{
textMatched = true;
}
}
count++;
UpdatePanel1.Update();
} while (textMatched == false);
I want to display the translated text in label in each loop. All the translated text are being displayed after the loop is completed. I am using asp.net c#. As I am new to this language I am not able to find out where is the problem, and how to fix it.