在ASP中怎样获取某表内容中所有图片?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ASP中怎样获取某表内容中所有图片?相关的知识,希望对你有一定的参考价值。

表中是html代码,图片在代码中,
请高手说清楚点。万分感谢。
如何获取一个字段中的图片地址,
字段中的内容是html编辑器编辑的,
我想在首页显示一些不图片,就搜索某些有图片的文章,在前台滚动显示。
图片有的是上传得有的是超链接。
我是菜菜,请朋友们帮忙。

这是我以前提问时人家给出的答案,,,

<%
'如何过滤图片的函数 function find_img(strtemp)
'测试时间 2006-7-7 下午(没有风扇的情况下-_-!!通过测试)
strtemp="ssss<img alt=""sss"" src=""http://www.test.com/test.jpg"" /><img alt=""sss"" src=""http://www.test.com/test.png"" /><img alt=""sss"" src=""http://www.test.com/test.bmp"" /><img alt=""sss"" src=""http://www.test.com/test.gif"" />ddddddddddssss<img src=""http://www.test.com/test2.gif"" alt=""sss"" />dddddddddd"
find_img(strtemp)
function find_img(strtemp)
dim arrtemp
dim i,url_gif,num_gif,url_jpg,num_jpg,url_png,num_png,url_other,num_other
arrtemp=split(strtemp,"<img")
if Ubound(arrtemp)<=0 then response.Write "没有检测到图片标识" : exit function
response.Write "一共检测到图片标识数量:"&Ubound(arrtemp)&"<br>"
for i=1 to Ubound(arrtemp)
temp=cutstr(cutstr(cutstr(arrtemp(i),"right"," />"),"left","src="""),"right","""")
ext=Ucase(right(temp,4))
select case ext
case ".GIF"
url_gif = url_gif&"|"&temp
num_gif = num_gif + 1
case ".JPG"
url_jpg = url_jpg&"|"&temp
num_jpg = num_jpg + 1
case ".PNG"
url_png = url_png&"|"&temp
num_png = num_png + 1
case else
url_other = url_other&"|"&temp
num_other = num_other + 1
end select
next
response.Write "<font color=green>返回统计:</font><br>"
response.Write "<hr><font color=blue>1)过滤GIF格式图片共"&num_gif&"张</font><br>"&replace(url_gif,"|","<br>")
response.Write "<hr><font color=blue>2)过滤JPG格式图片共"&num_jpg&"张</font><br>"&replace(url_jpg,"|","<br>")
response.Write "<hr><font color=blue>3)过滤PNG格式图片共"&num_png&"张</font><br>"&replace(url_png,"|","<br>")
response.Write "<hr><font color=blue>4)其他格式图片(BMP格式等)共"&num_other&"张</font><br>"&replace(url_other,"|","<br>")

end function

function cutstr(temp,direct,str)
if direct="right" then '剪去标识符右边的内容(包括标识符)
cutstr = left(temp,instr(temp,str)-1)
else '剪去标识符左边的内容(包括标识符)
cutstr = right(temp,len(temp)-instr(temp,str)-len(str)+1)
end if
end function

%>
参考技术A ?????????? 还是不懂!

说都说不清楚!
参考技术B 那么麻烦,又是上传又是链接,要是上传的就好办了。用循环就可以输出了 ,我都是这样用滴。不过加外界链接就没有用过 参考技术C 麻烦!索性建立个表吧图片都放进去!然后读取还快点!

以上是关于在ASP中怎样获取某表内容中所有图片?的主要内容,如果未能解决你的问题,请参考以下文章

怎样获取页面中的所有图片节点

如何获取文章中的图片地址,所有的图片

Android 两个Activity之间怎样使用Uri传递图片,怎样获取图片的Uri,怎样通过Uri得到图片

asp.net如何获取浏览器原点相对于屏幕的位置

怎样从数据库读取图片

sql 批量修改,,mysql数据库某表内特定字符后40位后面添加添加特定内容怎样实现。