<!--#include file="common.asp"-->
<%
pid=request.querystring("id")
set con=getConnection()
set rs=con.execute("select * from products where PID='"+pid+"'")
if not rs.eof then
productname=rs(1)
longdescription=rs(5)
smallimage=rs(7)
price=rs(2)
end if
%>
<html>
<body>
<!--#include file="menu.asp"-->
<div align=center>
<br><br>
<font face=Arial size=3 color=blu
e>Product Description</font>
<table width=600 border=1>
<tr>
<td colspan=
2><font face=Arial size=3 color=blue>
<%=productname%></font></td>
</tr>
<tr>
<td width=400>
<%=longdescription%>
</td>
<td width=200>
<img src=<%=smallimage%>>
<br><br><br>$<%=price%>
<br><b
r><a href=addcart.asp?id=<%=pid%>>
Add to Shopping cart</a>
</td>
</tr>
</table>
</div>
</body>
</html>
<%con.close%>