ASP 3.0高级编程(二)
程序员文章站
2022-07-02 15:36:57
使用form和querystring集合 当用户填写页面
使用form和querystring集合 当用户填写页面<form>内容时所提供的全部值,或在地址栏输入在url后的值,通过form和querystring集合为asp脚本所用。这是在asp代码中访问值的一种简单方法。 1、 访问asp集合的一般技术大多数asp集合与在vb中见到的普通集合相差不多。实际上,它们是值的数组,但能通过使用一个文本字符串键(对大小不敏感)以及一个整型索引进行访问。因此,假如客户端web页面包含的<form>如下: <form action=”show_request.” method=”post”> firstname:<input type=”text” name=”firstname”> lastname:<input type=”text” name=”lastname”> <input type=”submit” value=”send”> </form> 可通过访问asp的form集合来访问其控件内的值: strfirstname = request.form(“firstname”) strlastname = request.form(“lastname”) 也可使用窗体中控件的整型索引,索引的范围从在html中第一个定义的控件开始,然后根据定义的顺序排序: strfirstname = request.form(1) strlastname = request.form(2) 然而,后面的这种以整型为索引的技术不推荐使用,因为一旦有html中的控件发生了变化,或者插入一个新的控件,则asp代码将得到错误的值。进一步而言,对于代码的人来讲,极容易混淆。 1) 访问集合的全部值可以通过引用集合把整个form上的一系列值变成单个的字符变量,且不用提供键或索引。 strallformcontent = request.form 假如文本框包含值priscilla和descartes,则request.form语句将返回下列字符: firstname=priscilla&lastname=descartes 注意,提供的值是以名称/值对的形式出现的(即控件名称=控件值),并且每一对名称/值相互之间是用符号“&”相分隔的。假如打算把窗体中的内容传递单独的,希望得到值的标准格式的可执行应用程序或dll,这个技术是很有用的。然而,一般说来,都是通过以窗体中控件的名称为文本键来访问集合中的内容。 2) 遍历一个asp集合有两种方式遍历一个asp集合中的所有成员,方式与普通vb集合的基本相同。每个集合提供一个count属性,返回的是集合中条目数量。可通过使用一个整型索引使用count属性来遍历。 for intloop=1 to request.form.count response.write request.form(intloop) & “<br>” next 假如先前的窗体包含priscilla和descartes值的两个文本框,将得到如下结果: priscilla descartes 然而,更好的方法是使用for each...next结构。 for each objitem in request.form response.write objitem & “=” & request.form(objitem) & “<br>” next 这带来的好处是既可以访问控件的名称又可访问其值。上述代码将得到如下结果: firstname = priscilla lastname = descartes 注意,一些浏览器返回到asp的<form>值可能与页面上显示的顺序不尽相同。 3) 集合成员的多值性在某些情况下,asp集合中的各个成员可能不止一个值,这种情况发生在html定义中有几个控件有相同name属性时。例如: <form action=”show_request.asp” method=”post”> <input type=”text” name=”otherhobby”> <input type=”text” name=”otherhobby”> <input type=”text” name=”otherhobby”> <input type=”submit” value=”send”> </form> 在form集合中,将为“otherhobby”创建一个条目。然而,它将包括从三个文本框中得到的值。假如在提交时,用户留下了一个或多个为空,则返回的值为空字符串。假如用户在第一和第三个文本框分别输入gardening和mountaineering,第二个文本框为空,在我们的asp代码中访问request.form(“otherhobby”),将返回字符串: gardening, ,mountaineering 为了能够在这种情况下,访问单个值,可以用复杂一些的代码: for each objitem in request.form if request.form(objitem).count >1 then ‘more than one value in this item response.write objitem & “:<br>” for intloop = 1 to request.form(objitem).count response.write “subkey” & intloop & “value = “_ & request.form(objitem) (intloop) & “<br>” next else response.write objitem & “ = ” & request.form(objitem) & “<br>” end if next 对于前面的包含三个otherhobby控件的窗体实例,这将返回: otherhobby: subkey 1 value = gardening subkey 2 value = subkey 3 value = mountaineering 然而,由于很少给多个文本框相同的名字,因此这种技术很少用到。 a) html中的单选或选页按钮控件 在html中,需要给几个控件相同的name属性的情况是单选(或选项)按钮,例如: <form action=”show_request.asp” method=”post”> i live in: <input type=”radio” name=”country” value=”am”>america<br> <input type=”radio” name=”country” value=”eu”>europe<br> <input type=”radio” name=”country” value=”as”>asia<br> <input type=”submit” value=”send”> </form> 因为用户只能选择多项中的一个(这就是给它们相同的名字的原因),将仅得到一个返回值,浏览器只能发送所选择控件 的值。因此,假如这个窗体的用户已经选择了“europez”,将得到这个条目,通过遍历form集得到其值: country = eu 由于为每个控件提供了不同的value属性,反映了每个条目所对应的国家或地区的名称。假如省略了value属性,浏览器将 返回的值为“on”,因此将得到: country = on 这是不经常用到的,因此一般对使用相同名称的单选控件使用value属性。 b) html复选框控件 当一个窗体中html包含一个复选框控件时,一般都给定唯一的名称,例如: <form action=”show_request.asp” method=”post”> i enjoy: <input type=”checkbox” name=”reading” checked> reading <input type=”checkbox” name=”eating”> eating <input type=”checkbox” name=”sleeping”> sleeping <input type=”submit” value=”send”> </form> 在这种情况下,提交窗体时,假如仅是第一和第三个复选框被选中(加标记),遍历form集合时,会得到下列值: reading = on sleeping = on 然而,假如为每个复选框提供一个值,把这个值发往服务器代替字符串“on”。例如窗体如下: <form action=”show_request.asp” method=”post”> i enjoy: <input type=”checkbox” value=”hobby025” name=”hobby” checked>_ swimming <input type=”checkbox” value=”hobby003” name=”hobby” checked>_ reading <input type=”checkbox” value=”hobby068” name=”hobby”>eating <input type=”checkbox” value=”hobby010” name=”hobby”>sleeping |
上一篇: ASP中时间函数的使用(一)
下一篇: DW+ASP 玩转动态二级菜单