Regarding : (jQuery ajax method) :
Does contentType
property is counted when the request itself is a GET
request ?
(example)
$.ajax({
type: "GET",
url: "/webservices/xxx.asmx/yyy",
data: JSON.stringify({ Markers: markers }),
contentType: "application/json; charset=utf-8",
dataType: "json",.......
});
p.s.
contentType is the form of data which i send to the server
dataType is the form of data which i EXPECT to get from server.