.net ajax跨域访问的问题咨询。

前端是按钮点击触发函数,运行ajax调用服务器http://220.1.1.1上的程序。
$.ajax({
type: "get",
async:false,
url: "http://220.1.1.1:8080/chengxu.aspx",
dataType: "jsonp",
jsonp:"Callback",

data:"a=0&b=20170101&callback=?",
success: function(data){
alert(json.stringify(data));
}
});
以上是前端js的内容,服务器端aspx就是response.write(custinfo) 返回的一个json串,格式为newtonsoft插件的格式 [ {},{},{} ] ,我现在不知道服务器端是不是还要修改什么内容? 调试报的错是 uncaught systaxerror: unexpected identifier

服务器端:response.setHeader("Access-Control-Allow-Origin", "*");