标签:process 页面 string 通用版 input 获取值 isp 请求 bsp
当IsPostBack=true时表示非第一次请求 * HttpContext.Current.Request.QueryString[ ]括号中是获取另一个页面传过的的参数值
HttpContext.Current.Request.Form[“ID”]····Form获取值是根据name="ID"不是id="ID"的 HttpContext.Current.Request["ID"],上面两者的通用版。
本质:ID就是name=“ID” <form>
<input type="text" name="ID" value="aaaa" /> <
/form>
如果html页面中name的值改变,后台跟着改变。
ProcessEdit:
<input type="hidden" name="hidId" id="hidId" />
html:
int id = int.Parse(context.Request["hidId"] ?? "0")
* 有没有一本书把我们的零散小知识系统化、结构化、有实践有理论。==一个真实的项目就是一本好书。
一般处理程序PR方法: ProcessRequest
*怎么显示VS1010的行号。 工具-选项-文本编辑器-所有语言-行号。
标签:process 页面 string 通用版 input 获取值 isp 请求 bsp
原文地址:http://www.cnblogs.com/hao-1234-1234/p/6041205.html