用链接组件轻松做交互式链接
类别: ASP教程
<html>
<title>测试</title>
<BODY>
<% set myobj=server.createobject("mswc.nextlink") %> \'\'建立 Content Linking 组件
<table border=1>
<%
j=0
FOR i=1 to myobj.getlistcount("list.txt")
\'获取文件 urllist.txt 中链接数目
url1=myobj.getnthurl("list.txt",i) \'取得超链接
explain=myobj.getnthdescription("list.txt",i) \'\'取得文字描述
下面我是控制在表格里面显示
if j mod 3=0 then
Response.Write "<tr><td width=\'250\'><div align=\'center\'>"
else
Response.Write "<td width=\'250\'><div align=\'center\'>"
end if
%>
<a href=rtsp://172.16.0.1/<% =url1 %> >
<% response.write explain %> </A>
<%
j=j + 1
if j mod 3=0 then
Response.Write "</td></tr>"
else
Response.Write "</td>"
end if
next
%>
<tr>
</table>
</body>
</html>
说明:list.txt里面的文件格式为:前面为链接地址,后面为描述,链接url地址和描述之间用 Tab 键分隔。如果文件很多,你可以用dir * >>list.txt 获取所有的路径及文件名,然后在word里面打开,再得用alt 键进行列选,就很方便了。
<title>测试</title>
<BODY>
<% set myobj=server.createobject("mswc.nextlink") %> \'\'建立 Content Linking 组件
<table border=1>
<%
j=0
FOR i=1 to myobj.getlistcount("list.txt")
\'获取文件 urllist.txt 中链接数目
url1=myobj.getnthurl("list.txt",i) \'取得超链接
explain=myobj.getnthdescription("list.txt",i) \'\'取得文字描述
下面我是控制在表格里面显示
if j mod 3=0 then
Response.Write "<tr><td width=\'250\'><div align=\'center\'>"
else
Response.Write "<td width=\'250\'><div align=\'center\'>"
end if
%>
<a href=rtsp://172.16.0.1/<% =url1 %> >
<% response.write explain %> </A>
<%
j=j + 1
if j mod 3=0 then
Response.Write "</td></tr>"
else
Response.Write "</td>"
end if
next
%>
<tr>
</table>
</body>
</html>
说明:list.txt里面的文件格式为:前面为链接地址,后面为描述,链接url地址和描述之间用 Tab 键分隔。如果文件很多,你可以用dir * >>list.txt 获取所有的路径及文件名,然后在word里面打开,再得用alt 键进行列选,就很方便了。
- 上一篇: 使用ASP+JMAIL进行邮件群发
- 下一篇: 正则表达式在网络编程中的运用(4)
-= 资 源 教 程 =-
文 章 搜 索