Form Form 集合通过使用 POST 方法的表格检索邮送到 HTTP 请求正文中的表格元素的值。 语法 Request.Form( element ) [ ( index ) | .Count ] 参数 element 指定集合要检索的表格元素的名称。 index 可选参数,使用该参数可以访问某参数中多个值中的一个。它可以是 1 到 Request.Form( parameter ).Count 之间的任意整数。 注释 Form 集合按请求正文中参数的名称来索引。 ...[ 查看全文 ]
什么是 Cookie?Cookie 其实是一个标签,经常可能听到的中文翻译:小舔饼。当你访问一个需要唯一标识你的站址的 WEB 站点时,它会在你的硬盘上留下一个标记,下一次你访问同一个站点时,站点的页面会查找这个标记。 每个 WEB 站点都有自己的标记,标记的内容可以随时读取,但只能由该站点的页面完成。每个站点的Cookie与其他所有站点的Cookie存在同一文件夹中的不同文件内(你可以在 win98 的 Windows 目录...[ 查看全文 ]
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...[ 查看全文 ]