<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> Untitled Document <% if session("x") = 0 then rss.open "select Top 1 * from newproducts order by ID ASC",con,1,3 session("x") = rss("id") else session("x") = session("x") + 1 rss.open "select * from newproducts where id="&session("x"), con , 1 , 3 end if if rss.eof then session("x") = 0 response.Redirect("NewProducts.asp") end if %>
<% rss.close con.close %>