When I make a jQuery AJAX JSON request, it responds with a "d" attribute.
Why is this?
When I make a jQuery AJAX JSON request, it responds with a "d" attribute.
Why is this?
here a good article about it http://encosia.com/2009/06/29/never-worry-about-asp-net-ajaxs-d-again/
“.d” what? If you aren’t familiar with the “.d” I’m referring to, it is simply a security feature that Microsoft added in ASP.NET 3.5’s version of ASP.NET AJAX. By encapsulating the JSON response within a parent object, the framework helps protect against a particularly nasty XSS vulnerability.
If you aren’t familiar with the “.d” I’m referring to, it is simply a security feature that Microsoft added in ASP.NET 3.5’s version of ASP.NET AJAX. By encapsulating the JSON response within a parent object, the framework helps protect against a particularly nasty XSS vulnerability.