日期:2014-05-17  浏览次数:20717 次

如何读取一个字段中多个图片
如何读取一个字段中多个图片,并定义显示第几张

------解决方案--------------------
<%
dim abc,abcstr,i
abc= "*http://localhost/images/0000.gif*http://localhost/images/0001.gif*http://localhost/images/0002.gif "
abcstr=split(abc, "* ")
for i=0 to ubound(abcstr)
response.write abcstr(i)& " <br> "
next
'我就让你显示第三个。
response.write abcstr(2)& " <br> "
%>
第一个是分离出来是空,所以让显示第三个的结果就会是http://localhost/images/0001.gif