| General Information |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 4"
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 information available. |
<%
end if
%>
|
| Description Of The Company |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 5"
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 information available |
<%
end if
%>
|
| Board Of Directors |
<%
sql="select * from tbl_InformacionGeneral Where id_Categoria = 6"
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 information available |
<%
end if
%>
|
|