Customer Listing
<%If Not IsEmpty(Session("ItemCount")) Then iCount = Session("ItemCount") Else iCount = 0 End If If iCount > 0 Then%>
<%End If%>
<% Set RS = Conn.Execute("SELECT * FROM Customers") %>
Company Name
Contact Name
E-mail address
City
State/Province
<% Do While Not RS.EOF %>
<%=RS("CompanyName")%>
<%=RS("ContactLastName") & ", " & RS("ContactFirstName")%>
"><%=RS("EmailAddress")%>
<%=RS("City")%>
<%=RS("StateOrProvince")%>
<% RS.MoveNext Loop RS.close Set RS = Nothing %>
<% REM Column Span Value %> <% HTML_CS = 3 %> <% HTML_INDENT = FALSE %>