11-11-2010, 06:05 PM
Hi Reema,
The error is occurring as the number of double quotes is odd in the given statement.
You may try this:
Please let me know if still any problem.
The error is occurring as the number of double quotes is odd in the given statement.
Code:
str = "<A href="manage_contact_edit.htm?contactId=newstr>Edit</A>"
You may try this:
Code:
str = "<A href='manage_contact_edit.htm?contactId=" + newstr + "'>Edit</A>"
Please let me know if still any problem.