1樓:匿名使用者
response.cookies("admin")=rs("id")response.cookies("admin").expires=hour+1
response.cookies("qx")=rs("qx")response.cookies("qx").expires=hour+1
cookie這樣儲存很不安全
我一般不儲存cookie,儲存也只儲存加密的.即使伺服器端驗證麻煩點
2樓:匿名使用者
response.cookies("admin").expires= (now()+1/24) '表示保持一個小時
response.cookies("admin").expires = dateadd("n", 60, now()) '表示保持60分鐘(從現時間累加60分鐘)
response.cookies("admin").expires=hour+1 '表示cookies儲存1小時。
就這樣寫,等過了60分鐘的時候,系統自動把cookies的值給清空,就為自動退出
ASP中如何只顯示日期不顯示時間
time1 now time2 formatdatetime time1,2 以下是formatdatetime 函式的一些用法,你可以參考一下 formatdatetime 函式 返回表示式,此表示式已被格式化為日期或時間。formatdatetime date namedformat 引數dat...
windows中如何用ssh連線
1.大部分linux系統 中都預設安裝了ssh伺服器,只要在windows系統中安裝一個客戶端軟體,就可專以連線到linux了.常見屬的客戶端軟體有putty,securecrt,windows secure shell等.2.設定ip ifconfig eth0 ip地址設定閘道器 route a...
ASP中,如何限制登入使用者通過更改url傳遞來的id的值訪問別的使用者的頁面
生成靜態頁 post 中隱藏傳值,每個使用者一個資料夾,登陸完直接轉向並且彈出一個提示框alert 在資料夾內進行session判斷,if request.querystring id session id then response.write end if 驗證該id下的內容是否屬於該客戶,不屬...