<TD width="100%" align=center><font color=#ffffff>您是第</font>
<%whichfile=server.mappath("counter/count.txt")
Set fs=CreateObject("Scripting.FileSystemObject")
Set thisfile=fs.opentextfile(whichfile)
visitors=thisfile.readline
thisfile.close
countlen=len(visitors)
for i=1 to countlen
response.write "<img src=counter/3/"&mid(visitors,i,1)&".gif></img>"
next
visitors=visitors+1
set out=fs.createtextfile(whichfile)
out.writeline(visitors)
out.close
set fs=nothing
%><font color=#ffffff>位访问者</font>
</TD>
这个是您是第 位 访问者的代码是用图片形式显示,我想改成用文本显示不用图片显示怎么来改代码,应该是改response.write "<img src=counter/3/"&mid(visitors,i,1)&".gif></img>"
吧?
代码无错,原来是用图片来显示的现在想改成用文本来显示。