***** http://www.fultonbank.com/process_product.asp
<% affcode = 1057 %>
Fulton Bank
<%
Set Conn=Server.CreateObject("ADODB.Connection")
Conn.Open "FultonAffiliates"
SQL = "SELECT * FROM products WHERE productname LIKE '%" & Request.Form("product") & "%' AND affiliate = '" & affcode & "'"
Set RS = Conn.Execute(SQL)
%>
<% if RS.EOF then %>
Sorry No Products Found |
<% end if %>
<% DO UNTIL RS.EOF %>
|
"><% = RS("productname") %>
<% = RS("shortdesc") %>
 
|
<% RS.MoveNext %>
<% LOOP %>
|
<% rs.close
conn.close
%>