我正在尝试在ASP中执行ajax请求,并使用JavaScriptSerializer将响应作为json发送。这样做没问题,但是当我在自己的课堂上这样做时,让我们说
Class User {
public String name = "name";
}
我总是得到一个
net :: ERR_CONNECTION_RESET错误,ajax请求失败。
我正在使用web方法来处理ajax请求
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void dispatch() {
Context.Response.Clear();
Context.Response.ContentType = "application/json";
User[] a = new User[2]{new User(), new User()};
Context.Response.Write(jsSerializer.serialize(a));
}
任何提示?