当前位置: 代码迷 >> ASP >> Asp.net中的【request】的两种取值模式(笔记)
  详细解决方案

Asp.net中的【request】的两种取值模式(笔记)

热度:78   发布时间:2012-11-23 00:03:43.0
Asp.net中的【request】的两种取值方式(笔记)

 string HelpCode = this.request["HelpCode"];    // 浏览器取值

 this.request.Form["Custom_Id"];   // 表单传递方式

  相关解决方案