post与get在ashx中的取值的区别

post传值不在地址栏显示

get传值会再地址栏中显示

下面的代码给出了 一般处理文件中对两种数据的获取方法

            context.Response.ContentType = "text/html";
            StringBuilder sbHtml = new StringBuilder();
            sbHtml.Append("登陆页面");
            sbHtml.Append("
姓名:
密码:
");//如果method为post时下面的request.Form["txtname"] sbHtml.Append("
"); context.Response.Write(sbHtml.ToString()); string strName = context.Request.QueryString["txtname"];//要改为request.Form["txtname"]当然都可以只用request["txtname"] if (!string.IsNullOrEmpty(strName)) { context.Response.Write(strName+"欢迎你"); }


 post 传递、邮递 发送过去 一般是客户端向服务器端发送信息 如注册

 get   获取 一般是先向服务器端发送请求,服务器端在根据客户端请求发回所需的信息。如分页

你可能感兴趣的:(post与get在ashx中的取值的区别)