
No sale los elementos de ASP
Publicado por Juan Carlos (3 intervenciones) el 29/03/2006 18:14:39
Hola estoy haciendo una pagina con extension ASP y cuando lo cargo desde el navegador no me muestra los elementos que quiero que salgan, en mi pagina he puesto lo siguiente:
<%@ LANGUAGE="VBSCRIPT" %>
<%
Response.Expires=0
If Session("codres") = "" then
session("FlagError") ="9"
Response.redirect "mensaje.asp"
End if
%>
<head>
<title>CONTENIDO DE MI PAGINA</title>
</head>
<body>
<%
If Session("codres") = "" then
response.write("VACIO")
Else
response.write("NO VACIO")
End if
response.write(Session("codres"))
response.write(Session("Nivel"))
response.write(Session("detalle"))
response.write(Session("nomuser"))
response.write("<P>")
response.write("POR QUE NO SE MUESTRA NADA")
%>
DESDE LA PAGINA UNO, NO SE MUESTRA LOS ELEMENTOS ASP
</body>
</html>
--------------------
CUANDO LO EJECUTO SOLO ME MUESTRA
"DESDE LA PAGINA UNO, NO SE MUESTRA LOS ELEMENTOS ASP"
Y LAS LINEAS DE ASP NO MUESTRA NADA
Por favor alguien me puede ayudar sobre el tema, gracias por el tiempo que les tome
<%@ LANGUAGE="VBSCRIPT" %>
<%
Response.Expires=0
If Session("codres") = "" then
session("FlagError") ="9"
Response.redirect "mensaje.asp"
End if
%>
<head>
<title>CONTENIDO DE MI PAGINA</title>
</head>
<body>
<%
If Session("codres") = "" then
response.write("VACIO")
Else
response.write("NO VACIO")
End if
response.write(Session("codres"))
response.write(Session("Nivel"))
response.write(Session("detalle"))
response.write(Session("nomuser"))
response.write("<P>")
response.write("POR QUE NO SE MUESTRA NADA")
%>
DESDE LA PAGINA UNO, NO SE MUESTRA LOS ELEMENTOS ASP
</body>
</html>
--------------------
CUANDO LO EJECUTO SOLO ME MUESTRA
"DESDE LA PAGINA UNO, NO SE MUESTRA LOS ELEMENTOS ASP"
Y LAS LINEAS DE ASP NO MUESTRA NADA
Por favor alguien me puede ayudar sobre el tema, gracias por el tiempo que les tome
Valora esta pregunta


0