Google Translator with webservices
How to use google translator in web application?If any one has any examples please let me know..
Actually what i want is in a form i have two blocks if i entered text (english) in one block then in the other block it should translate to the other language..and also i want to save this content..
Thanks & Regards
Divya
Answers (1)
0
Hi,
The issue is that, when postback happens html controls are going back to the initial state. You may need to call the expandcollapsesub() function from backend for them to go to open state again.
-1
- protected void AddRows(object sender, EventArgs e)
- {
- GridViewRow row = (sender as LinkButton).NamingContainer as GridViewRow;
- string orderId = (row.FindControl("txtOrderId") as TextBox).Text.Trim().Replace(",", "");
- string orderDate = (row.FindControl("txtOrderDate") as TextBox).Text.Trim().Replace(",", "");
-
- Response.Redirect(Request.Url.AbsoluteUri);
- }