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.

link|improve this question

50% accept rate
1  
That's not the way HTTP works. You either need to use a client appoach(not sure if it's possible with bing translation) or you need to trigger a hidden-button-click programmatically from serverside that posts back automatically every time. – Tim Schmelter Jan 11 at 17:52
@Tim Schmelter: Can you give me some example on how to do so? – Kushal Jan 11 at 18:01
This will show you JQuery to click a hidden button: stackoverflow.com/questions/1091636/…. Don't forget that when you add the hidden button, do not set the button visible to false. Rather set the style as display:none; – Josh Jan 11 at 18:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.