Satış Servis - Bayiler
<%
sql="select * from bayiler order by sehir,bayi_adi"
kk.open sql,conn,1,3
if kk.recordcount > 0 then
sayi=kk.recordcount - 1
%>
İl |
Bayi Adı |
Yetkili Kişi |
Adres |
Telefon |
<%
i=0
do while not kk.eof
i=i+1
%>
<%=kk.fields("sehir")%> |
<%=kk.fields("bayi_adi")%> |
<%=kk.fields("yetkili")%> |
<%=kk.fields("adres")%> |
<%=kk.fields("telefon")%> |
<%if sayi>=i then%>
|
<%end if%>
<%
kk.movenext
loop
%>
<%end if%>
|