JSON form表单中的数据序列化成JSON格式

XXX.html (XXX.aspx):

//获取用户在添加表单中输入的数据
var pars = $("#addUserForm").serializeArray();  //(JQuery中的函数)将form表单中的数据序列化成JSON对象格式{"UserName":"张三","UserPwd":"123456"}
$.post("AddUserInfo.ashx", pars, function (data) {
	if(data=="ok"){
		//.....
	}else{
		//.....
	}
});
AddUserInfo.ashx (服务器端):
UserInfo userInfo = new UserInfo();
userInfo.UserName = context.Request["UserName"];  //"UserName"对应form表单中name属性的值
userInfo.UserPass = context.Request["UserPwd"];
if (....)
{
    context.Response.Write("ok");
}
else
{
     context.Response.Write("no");
}


你可能感兴趣的:(ASP.NET,JQuery,Ajax,JSON)