可以模仿QQ空間裡有圖片的話就在標題後面顯示有附件的圖片
ASP/Visual Basic程式碼:
程式碼
<%
'************************************************* **
'*函數名稱: GetImgFromContent
'*參數說明: html 提取的html 程式碼
'*功能簡介: 提取這部分html程式碼中的圖片
'*程序作者: evio http://www.backci.cn/code
'*http://www.downcodes.com/
'************************************************* **
function GetImgFromContent(html)
Dim Re, match, matchs, htm, t
htm = ""
set Re = new RegExp
re.IgnoreCase =True
re.Global = True
re.Pattern = "<img [^<]*src=""(.*)""[^>]*>" '--<img [^<]*src=""(.*)""[ ^>]*>
Set matchs = re.Execute(html)
for each match in matchs
htm = htm + (match.SubMatches(0)) & "|$|"
next
set matchs = nothing
t = split(htm, "|$|")(0)
if len(t) = 0 or t = "" then
t = "_template_Images/prive.jpg"
end if
ze = "<img src='" & t & "' width='191' height='119' />"
end function
%>