<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <%=SITE_NAME%>

Add a new association

Use this page to add a new association.

<% OpenDatabase() sql = "SELECT product_id, product_skew, product_name FROM product WHERE product_removed = 0 OR product_removed IS NULL ORDER BY product_skew" Set tempRS = conn.Execute(sql) Do Until tempRS.EOF product_id = tempRS("product_id") product_skew = tempRS("product_skew") product_name = tempRS("product_name") products = products & "" & vbCrLf tempRS.MoveNext Loop tempRS.Close %>
is an accessory for
Add reverse-association (both products will associate with eachother).

Back