
16/05/2005, 07:35
|
 | | | Fecha de Ingreso: febrero-2005
Mensajes: 539
Antigüedad: 20 años, 2 meses Puntos: 1 | |
yo codifique el web congif asi:
<!--
The <sessionState" section is used to configure session state for the application.
It supports four modes: "Off", "InProc", "StateServer", and "SqlServer". The
later two modes enable session state to be stored off the web server machine -
allowing failure redundancy and web farm session state scenarios.
<sessionState mode="InProc"
stateConnectionString="tcpip=127.0.0.1:42424"
sqlConnectionString="data source=127.0.0.1;trusted_connection=true"
cookieless="false"
timeout="20" />
-->
<sessionState mode="InProc"
cookieless="true"
timeout="20"/>
Lo que esta entre <-- --> son comentarios,es importatne el tiempo de session,para si vas a utilizar variables si pasa el tiempo la session se caduca (pasar el tiempo sin hacer llamdas al servidor) |