< /div>
サーバー H.ashx
<%@ WebHandler Language="C#" Class="H" %> 🎜>using System;
using System.Web;
public class H : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = " /plain";
string result = context.Request.QueryString["jsoncallback"] "({"name":"テスト番号は","openid":"123456789"})";
context.Response.Clear();
context.Response.Write(結果);
} >public bool IsReusable {
get {
return false
}
}
}