<%
set rs2=server.createobject("adodb.recordset")
sqlstr2="select top 1 * from M_information_Pic where i_id="& now_info_id &" order by pic_id"
rs2.open sqlstr2,conn,1,1
if rs2.eof then
product_pic=""
else
product_pic="smallpicture/"&rs2("pic_s")
if rs2("pic_b")<>"" then product_pic="bigpicture/"&rs2("pic_b") ' else product_pic2=rs2("pic_s")
%>
<%
end if
rs2.close
set rs2=nothing
%>