<!--#include file="common.asp"-->
<%
Dim con
set con=getConnection()
set rs=con.execute("select * from products")
%>
<html>
<head>
<title>Welcome to the Store</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<!--#include file="menu.asp"-->
Products
<div align=center>
<%
while not rs.eof
call showproduct(rs(0),rs(1),rs(4),rs(6),cstr(rs(2)))
rs.movenext
wend
%>
</div>
</body>
</html>
<%con.close%>