姓名:
内容:
js代码:
" + uName + ":
" + uCont + "
using System;
using System.Web;
public class doSave : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
var dic = new System.Collections.Generic.Dictionary<string,object>(); //存储的集合
string jsonStr = "{}"; //新建字符串jsonStr
context.Response.ContentType = "text/json"; //定义返回的内容类型为json
string uname = context.Request.QueryString[0]; //获取请求参数中第一个参数,也可以直接使用uname
string commet = context.Request.QueryString[1]; //定义字符串uname、commet为context请求查询的字符串context.Request.Params["username"];QyertStrubg:查询字符串
dic.Add("username",uname); //将字符串添加到对象中
dic.Add("content",commet);
jsonStr = Newtonsoft.Json.JsonConvert.SerializeObject(dic); //序列化集合为json字符串
context.Response.Write(jsonStr);
}
public bool IsReusable
{
get
{
return false;
}
}
}