JSP使用者註冊登陸登出JSP頁面

2021-06-22 05:10:50 字數 1005 閱讀 9640

一:jsp登陸頁 login.jsp:

<%@ page contenttype="text/html" pageencoding="utf-8" %>

<%

// 使用者名稱:admin 密碼:123

string name = request.getparameter("uname"); // 取得 name 的資訊

string password = request.getparameter("upass"); // 取得 password 的資訊

if(!(name == null || "".equals(name) || password == null || "".equals(password)))  // 進行使用者名稱和密碼的驗證

else

%>

二、jsp登入成功頁(歡迎頁)welcome.jsp:

<%@ page contenttype="text/html" pageencoding="utf-8" %>

<%

if(session.getattribute("userid") != null) // 已經設定過的屬性,所有不為空

else  // 非法使用者,沒有登陸通過,則 session 範圍內沒有屬性存在

%>

3、jsp登出頁 logout.jsp:

<%@ page contenttype="text/html" pageencoding="utf-8" %>

登出前 sessionid 為:<%= session.getid() %>

屬性為:<%= session.getattribute("userid") %>

<%

response.setheader("refresh", "2; url = login.jsp");  // 定時跳轉

session.invalidate(); // 登出 session 

%>

登出後 sessionid 為:<%= session.getid() %> 屬性為:

XMPP協議的使用 註冊,登陸,登出

authenticatewithpasswor方法登陸即可 inte ce xmpptool xmpp核心類 property nonatomic,strong xmppstream stream property nonatomic,copy resultblock resultblock end...

Linux 開機重啟和使用者登陸登出

基本介紹 shutdown shutdown h now 表示立即關機 shutdown h 1 表示1分鐘後關機 shutdown r now 立即重啟 halt 就是直接使用,效果等價於關機 reboot 就是重啟系統 sync 把記憶體的資料同步到磁碟上儲存 建議關機之前 sync 同步之後再...

Linux 關機 重啟和使用者登陸登出

1 shutdown shutdown h now 立即關機 shutdown h 1 1分鐘後關機 shutdown r now 立即重啟 2 halt 關機 3 reboot 重啟 4 syn 把記憶體資料同步到磁碟 注意 關機或重啟時,應先執行syn指令,把記憶體資料寫入磁碟,防止資料丟失 1...