HTML - AYUDAAAA!!

 
Vista:

AYUDAAAA!!

Publicado por Guillermo (2 intervenciones) el 06/10/2000 00:00:00
¿Alguien podria decirme que hace el siguiente codigo?:

<%
Dim strIdSesion
Dim strNomServFuncional
Dim strIpCliente
Dim strIdPagador
Dim strError
Dim strNumError
Dim vntMatrizCuentas

Dim objSesionCompartida


strIdSesion = cstr(Request.QueryString("IdSesion"))
strNomServFuncional = cstr(Request.QueryString("NomServidorFunc"))
strIpCliente = cstr(Request.ServerVariables(32))

´ MANTENIMIENTO DE SESION
´ INICIALIZACION DE VARIABLES
strError=""
strNumError=0

Set objSesionCompartida = server.CreateObject("DllWebEBPP.clsSesionCompartida")

blnRespuesta= objSesionCompartida.MantenimientoSesion(cStr(strIdSesion), "", _
cStr(strNomServFuncional), cstr(strIpCliente), _
strError, strNumError)

Set objSesionCompartida = Nothing

If strError <> vbNullString Then
Response.Redirect ("../error.asp?VarError="&strError&"&lngError="&strNumError)
End If
%>

<html>
<head>
<title>Pagos BancaNet</title>
</head>

<frameset rows="125,58%,14%"
cols="*"
border="0"
framespacing="0"
frameborder="NO">

<frame src="topcons.asp?IdSesion=<%=Request("IdSesion")%>
0
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RESPUESTASSSSSSSSS!!

Publicado por as1 (3 intervenciones) el 12/10/2000 00:00:00
Este codigo te sirve para armar una session en NT, una persona que ve tu página va a tener las variables de session mientras este en cualquier página de tu sitio.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar