来源:自学PHP网 时间:2015-04-14 14:51 作者: 阅读:次
[导读] 一 前端页面: test function buttonClick() { var name = document getElementById( name ) value;...
一.前端页面:
二.ashx代码:public class Handler1 : IHttpHandler, IRequiresSessionState
{
HttpRequest Request;
HttpResponse Response;
public void ProcessRequest(HttpContext context)
{
Request = context.Request;
Response = context.Response;
string method = Request["Method"].ToString();//对应ajax方法的url参数
MethodInfo methodInfo = this.GetType().GetMethod(method);//
methodInfo.Invoke(this, null);
}
public void getLzr() {
string name = Request["name"].ToString();
string age = Request["age"].ToString();
string sex = Request["sex"].ToString();
int i = SqlHelper.ExecuteNonQuery("Insert into lzr_name(name,age,sex) values(@name,@age,@sex)", new SqlParameter("@name",name), new SqlParameter("@age", age), new SqlParameter("@sex", sex));
if (i > 0)
{
//返回的数据
Response.Write("T");
}
else
{
Response.Write("F");
}
}
public bool IsReusable
{
get
{
return false;
}
}
}三.显示:点击按钮之前:
点击按钮之后:
|
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com