Form Form 集合通过使用 POST 方法的表格检索邮送到 HTTP 请求正文中的表格元素的值。 语法 Request.Form( element ) [ ( index ) | .Count ] 参数 element 指定集合要检索的表格元素的名称。 index 可选参数,使用该参数可以访问某参数中多个值中的一个。它可以是 1 到 Request.Form( parameter ).Count 之间的任意整数。 注释 Form 集合按请求正文中参数的名称来索引。 ...[ 查看全文 ]
Response对象后跟输出对象,其语法见下面的演示代码。 <html<head <titleres4.asp</title </head<body bgcolor="#FFFFFF" <% ' The response object can be used to write text a variety of ways ' depending on what style you personally prefer ' Various permutations of writing to the browser response.write "<form" response.write "H...[ 查看全文 ]
Response对象常与其它的代码混合使用。下面这段代码演示了response.write与其 它代码混用的例 子。 <html<head <titleres5.asp</title </head<body bgcolor="#FFFFFF" <% ' The response object can be used to write text ' but sometimes some functions must be used to transform ' the text instead of sending as is to the browser response.write "&l...[ 查看全文 ]