| Consejo de Administración |
| |
| NOMBRE |
PUESTO |
<%
sql="select * from tbl_ConsejoAdministracion, tbl_Puesto where tbl_ConsejoAdministracion.id_Puesto=tbl_Puesto.id_Puesto order by tbl_Puesto.int_Orden"
set RSC = TraeRecordset(sql)
i=0
do while not RSC.EOF
%>
| <%= RSC("st_Nombre") %> |
<%= RSC("st_Puesto") %> |
<%
RSC.movenext
i = i + 1
loop
if(i = 0) then
%>
| No hay información registrada. |
<%
end if
%>
|
|