asp.net 学习记录01-ashx

以下是asp.net 第一课笔记(仅仅记录不知道的,之前没用过,或用的比较少的)  ashx (添加 一般处理程序)

类:HttpContext

虚拟路径转换为实际的物理路径  context.Request.MapPath(“reg.html”);

接受客户端表单数据:context.Request.Form

数据来自于POST 请求,数据存在请求报文中,如果是get 方式用Form获取不到,因为get请求数据存放在请求行中(url)

通过context.Request.QueryString  获取URL中的变量值(userName=phpstu.com&userPasswd=123456)

string userName = content.Request.QueryString[“userName”];

string userPasswd=content.Reuest.QueryString[“userPasswd”];

int.tryParse() 尝试转换一个字符串为32位整数

int.TryParse(context.Request.QueryString[“id”], out id)

把内容输出到客户端 context.Response.Write

 

程序源码:[Downlink href=”http://www.phpstu.com/wp-content/uploads/2016/02/WebSite1.zip”]第一天程序源码[/Downlink]

未经允许不得转载:开心乐窝-乐在其中 » asp.net 学习记录01-ashx

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏