This is one of those situations where I\'ve had to pick up and run with a new tech without having time to learn the foundations!
I have the following js function whi
ASP.Net nests the JSON data in the d property because of cross site scripting attacks.
It is possible to return script code as the JSON response, and nesting the data inside the .d property makes it unparsable to the browser.
See here: JSON vulnerability
Regards K