In my application I have textarea in which English to Marathi conversion is happening.
I have used Google transliteration functionality in asp.net
The problem is when I am submitting form and returning back to same form the textbox(textarea) to which I am converting english to marathi stops working.
Then I have removed update panel from my form then this issue is not coming.
But I want both translation and update panel in the same form.
So tell me why update panel is causing problem and how to solve it.
Below is my code:
----Javascript------
  <script language="javascript" type="text/javascript">                google.load("elements", "1", {             packages: "transliteration"         }) ...

Go to the complete details ...