My favorites
▼
|
Sign in
lineadecodigo
Web Code Samples in spanish
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
lineadecodigo_asp
/
usuarios
/
time-out-sesion.asp
‹r228
r478
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Timeout de Sesion</title>
</head>
<body>
<h1>Timeout de Sesión</h1>
<%
'Mostramos el TimeOut
Response.Write("TimeOut actual: "
+ CStr(Session.Timeout) + "<br>")
'Modificamos el TimeOut a 10 minutos
Session.Timeout = 10
'Mostramos el TimeOut
Response.Write("Nuevo TimeOut: "
+ CStr(Session.Timeout) + "<br>")
%>
<br><br>
<hr>
Artículo disponible en: <a href="http://lineadecodigo.com/asp/gestionando-el-timeout-de-sesion-en-asp/">http://lineadecodigo.com/asp/gestionando-el-timeout-de-sesion-en-asp/</a><br/>
<a href="http://lineadecodigo.com" title="Linea de Codigo">lineadecodigo.com</a>
</body>
</html>
Show details
Hide details
Change log
r233
by vcuervo on Apr 21, 2010
Diff
URL corregida.
Go to:
...asp/usuarios/time-out-sesion.asp
Project members,
sign in
to write a code review
Older revisions
r228
by vcuervo on Mar 26, 2010
Diff
Timeout de sesión
All revisions of this file
File info
Size: 756 bytes, 31 lines
View raw file
Powered by
Google Project Hosting