Hi, I have an Ajax request to a webservice.
In the webservice I have:
<WebMethod()> _
Public Function GetMyValues() As String
Dim result = "{""year2012"":{""results"":{""FR-J"":1.5}}}"
Return result
End FunctionThis returns
{"d":"{\"year2012\":{\"results\":{\"FR-J\":1.5}}}"}But how can I make it return like this?
{"year2012":{"results":{"FR-J":1.5,"FR-G":2,"FR-S":1.5}}}Thanks for any advice