if Your Asp Application is not working in all the above ways
do simple thing that is,
in login page when you chaeck for username abnd password like
if username="" and password=""" then
session("user")="yes")
..
..
end
now Start adding condition at the top of every asp page
if session("user")="yes" then
.
.
WRITE YOU ASP CODE WHAT EVER YOU HAVE .
.
else
response.write "session.expired"
end if
AND MAKE BIT CHANGE TO GLOBAL.ASA
LIKE
add
session.abandon to session.onStart Event
bye Shabir
|