Olha amigos estou precidando de uma ajuda, eu tenho este script de global.asa, para usuario online, a ajuda que eu estou precisando e a sequinte. O script funciona bem, so que ele so faz a atualização depois de 1(um) minuto, gostaria de saber se tem como altera-lo para que guando o usuario entrar e sair ele atualiza de imediato
Aqui esta o script
<script LANGUAGE="VBScript" RUNAT="Server">
'The code in this section is for when the server starts or the first user uses your site
'any variables in the Application_OnStart will remain till the server is stopped or the server is rebooted
Sub Application_OnStart
'Craete an ActiveUsersNumber variable with Application scope and set it to 0
Application("intActiveUserNumber") = 0
End Sub
'The code in this section is for when a user connects to any page in your web site
Sub Session_OnStart
'The session timeout is how long a session (user connection) to your web site will last. The defualt is 01 minutes
'When you call a web page a connection is made when the page is finshed downloading the connection is dropped
'if the session time out is set two low you wont register active users while they are reading a page
'if you set it two high you will still register users as active after they have left your site
'It is pobally best to leave at the defualt 01 minutes so that it dosent effect any other session variables used in your web site
Session.Timeout = 01
'The appilcation must be locked so that only one user can increment the Application ActiveUserNumber variable at a time
Application.Lock
'The Application ActiveUserNumber variable is incremented by 1
Pergunta
arldin
Olha amigos estou precidando de uma ajuda, eu tenho este script de global.asa, para usuario online, a ajuda que eu estou precisando e a sequinte. O script funciona bem, so que ele so faz a atualização depois de 1(um) minuto, gostaria de saber se tem como altera-lo para que guando o usuario entrar e sair ele atualiza de imediato
Aqui esta o script
Desde já agradeço a todos
Link para o comentário
Compartilhar em outros sites
2 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.