Ask a Question related to ASP.NET Security, Design and Development.
-
KaaN #1
signing out all users
hi,
i have written an aplication that changes some global variables of my
another application. it is some kind of a web.config editor.
i want all users that are signed in to be signed out when i change any
variable with the utility program.
or do you have another idea?
KaaN
[email]kaan.oezturk@spdata.de[/email]
KaaN Guest
-
PGP Signing Emails With ColdFusion
I?m currently working on a ColdFusion (MX7) application that needs to send PGP signed emails. Has anyone had any experience of this because any... -
Me, myself and Irene - Signing Off.
Okay, the time has come. I/We have been posting as the following: BBJ -
Signing Off
Well, ladies and gentlemen, as I said about sixteen hundred posts ago, I have found my meager knowledge (and BTW thanks a heck of a lot to whatever... -
PDF signing programmatically
Hi all, I am trying to write plug-in which will be used for PDF signing. I started from DocSign sample (Acrobat SDK) and change few things in it... -
signing on to a form
I have a data collection form I would like to have the person entering the data give me their initials. But I don't want to require them have to... -
Keith #2
signing out all users
Yikes, that's not a very nice thing to do to your users.
There is no safe way to do this because you really can't
access the sessions of other users from an existing
session. You can't really put a reference to the users
session as they session_start in the application scope
because each users data is protected I believe.
You could create an application level flag though such as:
Application("Logoff") = True
or something, check on each page if it's true and if so
you could then abandon the session and redirect them to
login. That's about as good as it'll get.
Personally, the easiest route is to make the program so
that any application scoped data is pulled when it's need
by each session. I'm not sure the driver for this
session ending effect you're looking for. Perhaps the
flag above is the safest and most reliable approach, but
make sure it's the first thing in your Page_Load.
variables of my>-----Original Message-----
>hi,
>
>i have written an aplication that changes some globaleditor.>another application. it is some kind of a web.configwhen i change any>
>i want all users that are signed in to be signed out>variable with the utility program.
>
>or do you have another idea?
>
>KaaN
>kaan.oezturk@spdata.de
>.
>Keith Guest



Reply With Quote

