Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
JigsFusion #1
Restrict the user to go back
How to restrict the user to go back ones the user has logged out. Or, if he goes back, how to generate custom error for Page Expire Error ?
JigsFusion Guest
-
How can I restrict one stream per user?
Hello! I have made a mp3-streamer in flash. Users must log on to a web page in order to access my player. If one user logs in once it's all OK. The... -
How to restrict the user to go back ones the user haslogged out. Or, if he goes back, how to generate custom errorfor
:music; How to restrict the user to go back ones the user has logged out. Or, if he goes back, how to generate custom error for Page Expire ? :music; -
to restrict from user inserting null values
Hi.. How to restrict from user inserting null values in insert pages...I have 3 ttextfields in my insert form so I need user to insert all the... -
restrict 1 active session per user
Well, the best way to do this in my opinion would be to follow the rule of "most recent user is the active user". This means if I login on one... -
Preventing user from clicking Back?
try this Response.Cache.SetCacheability(HttpCacheability.ServerAndNoCache); or any flavor of the httpcacheability enum "Karl"... -
pflynn02 #2
Re: Restrict the user to go back
Use this code in your header, it will cause there to be nothing cached, so you
wont be able to back back once logged out. <META HTTP-EQUIV='Pragma'
CONTENT='no-cache'> <META HTTP-EQUIV='Expires' CONTENT='Thu, 1 Jan 1600
01:00:00 GMT'> <cfheader name='Pragma' value='no-cache'> <cfheader
name='Cache-Control' value='no-cache, no-store, must-revalidate'> <cfheader
Name='Expires' Value='#Now()#'>
pflynn02 Guest



Reply With Quote

