HTML コード:
jQuery ソース ファイルを見ると、getJSON が次のように実装されていることがわかります:
getJSON: function( url, data, callback) {
return jQuery.get(url, data, callback, "json ");
},
public void ProcessRequest(HttpContext context)
{
if (context.Request.Params["type"].Equals("ajax"))
{
context.Response.ContentType = "text/plain ";
}
else
{
context.Response.ContentType = "application/json";
}
GetInfo(context);
}
public bool IsReusable
{
get
{
return false;
}
}
public void GetInfo(HttpContext context)
{
System.Collections.Generic. List listUser = UserInfoManage .GetUserInfoBySQL("Userinfo から上位 5 つを選択");
IsoDateTimeConverter timeConverter = new IsoDateTimeConverter(); HH':'mm': 'ss";
string ResJsonStr = JsonConvert.SerializeObject(listUser, timeConverter);
context.Response.Write(ResJsonStr);
}