| Datos Generales |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 1"
set RSC = TraeRecordset(sql)
i=0
do while not RSC.EOF
%>
| <%= RSC("st_Titulo") %> |
<%= RSC("st_Contenido") %> |
<%
RSC.movenext
i = i + 1
loop
if(i = 0) then
%>
| No hay información registrada. |
<%
end if
%>
|
| Descripción de la Empresa |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 2"
set RSC = TraeRecordset(sql)
i=0
do while not RSC.EOF
%>
| <%= RSC("st_Titulo") %> |
<%= RSC("st_Contenido") %> |
<%
RSC.movenext
i = i + 1
loop
if(i = 0) then
%>
| No hay información registrada. |
<%
end if
%>
|
| Principales Funcionarios |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 3"
set RSC = TraeRecordset(sql)
i=0
do while not RSC.EOF
%>
| <%= RSC("st_Titulo") %> |
<%= RSC("st_Contenido") %> |
<%
RSC.movenext
i = i + 1
loop
if(i = 0) then
%>
| No hay información registrada. |
<%
end if
%>
|
|