大家帮个忙,帮我取一下图片地址
如果c_parent = 0 显示的图片为当前图片显示的ID,如果c_parnet <>0 图片显示的为其父的ID ,列如 c_parent=2 它的图片显示为"关于我们"这一栏的图片,大家帮忙给我写一下,非常感谢
<%Set rs = Server.CreateObject("ADODB.Recordset")
if c_parent = 0 then
rs.open "select * from cms_channel where id="&request("id"),conn,1,3
if not rs.eof then
response.write("<img src="&rs("upload_pic")&">")
end if
rs.close
end if
%>