源代码是这样的
<%
'Name:随机网页
'Code:
'Data:
'设置
num="1000"
FilePath ="SuiJi.Txt"
%>
<%
randomize
ranNum=int(rnd*num)
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile(Server.MapPath(FilePath), 1,True)
For I=0 to num
if Not a.atEndofStream then
sql1=a.readline
if ranNum=I then sql=sql1
end if
Next
a.Close
response.redirect sql
%>
意思是说,从suiji.txt这个文档随机读取网页地址,然后打开。
但是现在我想要他是不随机的,而是逐个的打开文档里的地址。不过浏览器打开一个之后要关掉。
这样有没有可能做到呢?
高手帮帮忙啊。。。