| ACCESS FROM: ALL AVAILABLE |
|
<%
sql = "SELECT distinct state FROM callme order by state "
Set rs = Server.CreateObject("ADODB.Recordset")
rs.Open sql ,objDataConn,adOpenKeyset,adLockOptimistic,adCmdText
intCount = 0
do while not rs.eof
intCount = intCount +1
if intCount = 21 then
%> | |
<% End IF%>
"><%=rs("state")%> |
<%
rs.moveNext
loop
rs.close
set rs=nothing
%> | |
|