<%dim ObjAdoConn, StrSQL, RS
StrSQL = "SELECT * from tbs_grupos_informais where status = 1"
Conecta ObjAdoConn, StrSQL, RS
if not RS.EOF then
indx = 0
do Until RS.EOF
%>
|
" target="_self" class="links"><%=RS("nome")%>
|
<%
RS.MoveNext()
loop
else
end if
Desconecta ObjAdoConn, RS
%>
|