C# JSONP 源代码

      客户端JS三种写法:

     <%--    
    --%>


 





 <%--      --%>





服务端:

新建ashx 文件 processstart里面添加代码

    string callback = context.Request.QueryString["callback"];
            //json数据
            string json = "{\"name\":\"chopper\",\"sex\":\"man\"}";
            context.Response.ContentType = "application/json";
            //输出:回调函数名(json数据)
            context.Response.Write(callback + "(" + json + ")");
            //string call = callback + "(" + json + ")";


COnfig里面注册:

   
       
   

你可能感兴趣的:(C# JSONP 源代码)