62,243
社区成员




string date = "{\"date:[{\"name\":\"jeff\"}]}";
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
string data = "{name:\"jeff\"}";
context.Response.Write(data);
}
string Action = context.Request.QueryString["Action"];
if (Action == "FK")
{
string data = "{name:\"jeff\"}";
context.Response.Write(data);
}