push back button don,t allow to submit(asp with vbscript)
-
i wants to like this if user logout then complete logout no body can access the previous page by back on browser but i don't want if user logout go back and enter data submit in table without any user identifucaton . means i wants if user logout then no body can access the page from browser by using back
sanjeev
-
i wants to like this if user logout then complete logout no body can access the previous page by back on browser but i don't want if user logout go back and enter data submit in table without any user identifucaton . means i wants if user logout then no body can access the page from browser by using back
sanjeev
plz.. send me more info about wat do u want ?
-
plz.. send me more info about wat do u want ?
i wants to if user login and visit all pages and reply post on some topic after logout how can chek the user is logout if user is logout then can't allow any page to visit previous login . i am using a button for logout when press logout then redirect to login page but when press back button on standard tools bars he can enter in page without loging and but i wants if he is login then not permission to go previous page throu standard tools bar.
sanjeev
-
i wants to if user login and visit all pages and reply post on some topic after logout how can chek the user is logout if user is logout then can't allow any page to visit previous login . i am using a button for logout when press logout then redirect to login page but when press back button on standard tools bars he can enter in page without loging and but i wants if he is login then not permission to go previous page throu standard tools bar.
sanjeev
how can check the user is logout if he is logout and try to go on previous page by using standard buttons toolsbar . i wants to can't allow to visit prevous page without relogin if he is logout.
sanjeev
-
how can check the user is logout if he is logout and try to go on previous page by using standard buttons toolsbar . i wants to can't allow to visit prevous page without relogin if he is logout.
sanjeev
-
Use expiration meta code at the begginning of the page's head
<meta http-equiv="Expires" content="here goes the present date" />
-
use this javascript in login page source part(HTMl part) <!-- javascript:window.history.forward(1); -->
hello i am using a logout page and wants to if user logout then don't go back using standard back button without login but it now worked properly. i am trying to mack a logout page thats kill all the previous data and don't allow to go back without login like rediff ,yahoo and other sites [code] <% Dim conn Dim R Dim vuserid Set conn = Server.CreateObject("ADODB.Connection") conn.Mode = adModeReadWrite conn.Open("DSN=Oracle; USER ID = STARTER; PASSWORD = STARTER") Set R = Server.CreateObject("ADODB.Recordset") R.Open "Select Userid, status from userid", conn, adOpenStatic, adLockOptimistic, adCmdText vuserid = Request.Cookies("userid") R.Find "userid = '" & vuserid & "'" If Not R.EOF Then R("Status") = 0 R.Update End If Response.Cookies("userid") = "" R.Close Set R = Nothing conn.close Set Conn = Nothing Response.Redirect "message3.asp" End If %> [/code]
sanjeev