I use Json.net to parse json responce from web, but i have a problem if the json response contain html code.
For example:
string hj = @"{""data"": ""<a href=""www.google.com"">Google</a>""}";
JObject o1 = JObject.Parse(hj);
It raise a exception.
How can I parse the JSon response?
href=""www.google.com""part is breaking it.