小议ASP动态网页编程的19个基本技巧(2)_ASP教程
推荐:解析ASP无组件上载,带进度条,多文件上载以下为引用的内容: Example.asp
t
11.count:由request.From(name).count可知name字段输入几个值,若无此name字段,count为0
如下例:
以下为引用的内容: <% forI=1 to request.fron("input1").count response.write request.From("input1")(I)&"<br>" next %> 若input1有两个值则都显示出 *若未采用index指定读取哪个.可用 〈% for each item request.From("input")) repomse.write item &"<br>" next %> |
也可用" for each x in tewuest.From"重复取得所有字段的输入值。
以下为引用的内容: <% for each x in request.Form %> request.From (<%=x%)=<%=request.Form (x)%> <br> <% next %> |
12.
获取客户端TCP/IP端口的方法:
如: tcp/ip port is <%=request("server_port")%>
使用server_port可以得到接收HTTP request的连接port信息
13.
通过HTTP_ACCEPT_LANGUAGE的HTTP表头信息,可以得到用户端的使用语言
环境.
以下例子判断用户端的语言环境,给出不同的页面.
以下为引用的内容: <% language=request.servervariables("HTTP_ACCEPT_LANGUAGE") if language="en" then %> <!--#include file="english.asp"> <% else %> <!--#include file="china.asp"> <% end if%> |
14.主页保留的期限
如果用户端浏览器在一个主页保留的期限内,再度浏览此主页,则原在用
户端硬盘上的主页内容将被显示.
response.expires[=number]
其中NUMBER为记录数据盒(PAGE BOX)的保留期限,单位是分钟.
或:
response.expiresabsolute[=[date][time]]
如:设定一个主页保留期到某个日子.
15.连接到指定的URL地址
如:你希望确认用户已经看过INDEX.HTM,则可以检查是否已经看过,如
尚未确认,则自动连接到首页
以下为引用的内容: <% if not session("BEEN_to_home_page") then response.redirect "index.asp" end if %> |
16.判断是回到本页还是第一次进入
以下为引用的内容: <% if user_has_been_here_before then response.write "<h3 align=center> Welcome Back again" else response.write "Welcome!" end if %> |
17.显示数据库中的图片与超级连接
以下为引用的内容: <% set conn=server.creatobject("ADODB.connection") conn.open "myaddress" set rs=conn.execute("select name,tel,url,image from myaddress") %>
<p> |
18. 用ASP取得浏览器信息
<%
set a=s
分享:怎样使ASP获得代码中第一张图片地址以下为引用的内容: '把pattern 又修改了下 'code要检测的代码 'http://www.knowsky.com/asp.asp 'leixing html 或者ubb 'nopic 代码没有
- 相关链接:
- 教程说明:
ASP教程-小议ASP动态网页编程的19个基本技巧(2)。