<!--#include file="include/buyok_shop_30_conn.asp" -->
<%
call aspsql()
prodid=request("ProdId")
Set more_pic=Server.CreateObject("ADODB.Recordset")
prodid="select A.ProdId,A.FilePath,B.ProdName from more_pic A,buyok_produc B where A.ProdId=B.ProdId and A.ProdId='"&ProdId&"'"
more_pic.Open prodid,conn,1,1
%>
<html>
<head>
<title><%=more_pic("ProdName")%> - 商品图片</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="description" content="<%=sitedescription%>">
<meta name="keywords" content="<%=sitekeywords%>">
<link rel="stylesheet" href="buyok_shop.css" type="text/css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table border=0 width=100% align=center>
<%
if more_pic.bof and more_pic.eof then
response.write "没有图片或者显示图片出错!"
else
response.write "<tr><td align=center height=80><b><p style='font-size: 18pt; color: red; line-height=100%'>"&more_pic("ProdName")&"</font></b></td></tr>"
do while not more_pic.eof
response.write "<tr><td align=center><img src='"&more_pic("FilePath")&"'></td></tr>"
response.write "<tr><td height=20></td></tr>"
more_pic.movenext
loop
end if
more_pic.close
set more_pic=nothing
%>
</table>
<DIV style="position:absolute; top:1; left:1">
<!--#include file="buyok_menu.asp"-->
</DIV>
</body>
</html>