博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net Jquery表单html和后台交互
阅读量:6263 次
发布时间:2019-06-22

本文共 2337 字,大约阅读时间需要 7 分钟。

Html页面1

 

    纯Jquery表单和后台交互            
姓名
密码

 

Handler01
using System.Web;namespace Test{    ///     /// Handler 的摘要说明    ///     public class Handler01 : IHttpHandler    {        ///         /// 请求处理        ///         ///         public void ProcessRequest(HttpContext context)        {            context.Response.ContentType = "text/plain";            // 方式1            string userName = context.Request.Params["txtUserName"].ToString();            string userPwd = context.Request.Params["txtUserPwd"].ToString();            context.Response.Write(string.Format("姓名:{0},密码:{1}",userName, userPwd));            context.Response.End();        }        public bool IsReusable        {            get            {                return false;            }        }    }}

Html页面2

    纯Jquery表单和后台交互            
姓名
密码
Handler02
using System.Web;namespace Test{    ///     /// Handler 的摘要说明    ///     public class Handler02 : IHttpHandler    {        ///         /// 请求处理        ///         ///         public void ProcessRequest(HttpContext context)        {            context.Response.ContentType = "text/plain";            // 方式2(对应表单序列化)            string userName = context.Request.Form["txtUserName"].ToString();            string userPwd = context.Request.Form["txtUserPwd"].ToString();            context.Response.Write(string.Format("姓名:{0},密码:{1}", userName, userPwd));            context.Response.End();        }        public bool IsReusable        {            get            {                return false;            }        }    }}

 

 

转载地址:http://pnzpa.baihongyu.com/

你可能感兴趣的文章
一本离线的百科全书,当然无法和一本在线的百科全书抗衡。所谓的常识,在你的思考中被重构,根源就在于在线的崛起。...
查看>>
Floyd算法
查看>>
CentOS 6.4下安装Oracle 11gR2
查看>>
linux建立用户 详细
查看>>
jquery获取radio的值
查看>>
创建索引
查看>>
jQuery基础-创建HTML
查看>>
spring boot 热部署
查看>>
NYOJ-214 单调递增子序列(二) AC 分类: NYOJ ...
查看>>
[HDU 4417]Super Mario
查看>>
clip-path的妙用
查看>>
在FMOD中使用customRollOff实现更自然的声音衰减
查看>>
java日常-map转成json
查看>>
动画view
查看>>
自己写个多任务多线程断点下载框架
查看>>
Css 按钮
查看>>
Silverlight显示WCF详细异常信息
查看>>
BZOJ5299:[CQOI2018]解锁屏幕(状压DP)
查看>>
BZOJ1042:[HAOI2008]硬币购物(DP,容斥)
查看>>
[项目管理]关于项目的工期控制
查看>>