第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

去掉復(fù)選框,頁(yè)面任然記憶賬戶(hù)和密碼,后面頁(yè)面的查看用戶(hù)信息,也不是空

login.jsp?

<!DOCTYPE?HTML?PUBLIC?"-//W3C//DTD?HTML?4.01?Transitional//EN">
<html>
<head>
<%@?page?import="java.net.*"?%>
<%@?page?language="java"?contentType="text/html;?charset=utf-8"
????pageEncoding="utf-8"%>
<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8">
<title>???????</title>
</head>
<body>
	<%	request.setCharacterEncoding("utf-8");
		String?username="";
		String?password="";
		Cookie[]?cookie=request.getCookies();
		if(cookie!=null&&cookie.length>0){
			for(Cookie?c:cookie){
				if(c.getName().equals("username")){
					username=URLDecoder.decode(c.getValue(),"utf-8");
				}
				if(c.getName().equals("password")){
					password=URLDecoder.decode(c.getValue(),"utf-8");
				}
			}
		}
	%>
???<form?action="dologin.jsp"?method="post">
??????<table>
?????????<tr>
???????????<td>用戶(hù)名:</td>
???????????<td><input?type="text"?name="username"?value="<%=username?%>"/></td>
?????????</tr>
??????????<tr>
???????????<td>密碼:</td>
???????????<td><input?type="password"?name="password"?value="<%=password?%>"/></td>
?????????</tr>
?????????<tr>
???????????<td?colspan="2"><input?type="checkbox"?name="ischeckbox"?checked="checked"?value="記住密碼"/>記住密碼</td>
?????????</tr>
??????????<tr>
???????????<td?colspan="2"?align="center"><input?type="submit"?name="submit"?value="登錄"/></td>
?????????</tr>
??????</table>
???</form>

<html>
<head>



<!--dologin.jsp--->


<!DOCTYPE?HTML?PUBLIC?"-//W3C//DTD?HTML?4.01?Transitional//EN">
<%@?page?import="java.net.*"?%>
<%@?page?language="java"?contentType="text/html;?charset=utf-8"
????pageEncoding="utf-8"%>
<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8">
<title>???????</title>
</head>
<body>
	
	<%?request.setCharacterEncoding("utf-8");
	//判斷復(fù)選框是否被選中
	String[]?checkbox=request.getParameterValues("ischeckbox");
	if(checkbox!=null&&checkbox.length>0){
		String?username=URLEncoder.encode(request.getParameter("username"),"utf-8");
		String?password=URLEncoder.encode(request.getParameter("password"),"utf-8");
		
		//獲得Cookie對(duì)象并將信息存入cookie對(duì)象
		Cookie?usernameCookie=new?Cookie("username",username);
		Cookie?passwordCookie=new?Cookie("password",password);
		//保存cookie對(duì)象
		response.addCookie(usernameCookie);
		response.addCookie(passwordCookie);
		usernameCookie.setMaxAge(864000);//生存期限10天
		passwordCookie.setMaxAge(864000);
		
	}
	else{
		Cookie[]?cookie=request.getCookies();//獲得之前保存過(guò)的Cookie對(duì)象
		if(cookie!=null&&cookie.length>0){
			for(Cookie?c:cookie){
				if(c.getName().equals("username")||c.getName().equals("password")){
				c.setMaxAge(0);//銷(xiāo)毀對(duì)象
				response.addCookie(c);
				}	
			}
		}
		
	}
	%>
	<a?href="testlogin.jsp"?>查看用戶(hù)信息</a>	
</body>
</html>



testlogin.jsp

<!DOCTYPE?HTML?PUBLIC?"-//W3C//DTD?HTML?4.01?Transitional//EN">
<%@page?import="java.net.URLDecoder"%>
<html>
<head>
<%@?page?language="java"?contentType="text/html;?charset=utf-8"
????pageEncoding="utf-8"%>
<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8">
<title>???????</title>
</head>
<body>
	<h1>用戶(hù)信息</h1>
	<hr>
	<%
	request.setCharacterEncoding("utf-8");
	String?username="";
	String?password="";
	Cookie[]?cookie=request.getCookies();//獲取Cookie對(duì)象
	if(cookie!=null&&cookie.length>0){
		for(Cookie?c:cookie){
			if(c.getName().equals("username")){
				username=URLDecoder.decode(c.getValue(),"utf-8");
				
			}
			if(c.getName().equals("password")){
				password=URLDecoder.decode(c.getValue(),"utf-8");
			}
		}
	}
	
	%>
	用戶(hù)名:<%=username?%><br>
	密碼:<%=password?%><br>
	
</body>
</html>


正在回答

2 回答

去掉之后你需要重新提交一次,不然不會(huì)進(jìn)入dologin.jsp進(jìn)行判斷也就不會(huì)刪掉之前的信息,你只是把復(fù)選框去掉不提交可不還在嗎

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

沉沉浮浮

說(shuō)什么呢 不懂
2017-08-17 回復(fù) 有任何疑惑可以回復(fù)我~
#2

輕浮與傲慢 回復(fù) 沉沉浮浮

好好再理解下老師講的吧,這都看不懂。。。
2017-08-18 回復(fù) 有任何疑惑可以回復(fù)我~

你設(shè)置的過(guò)期時(shí)間是10天呀,然后你之前已經(jīng)記住了,就算現(xiàn)在刪了,本地還是有這個(gè)信息的啊

1 回復(fù) 有任何疑惑可以回復(fù)我~
#1

輕浮與傲慢

沒(méi)看到有判斷是否有cookie信息嗎,有的話(huà)會(huì)設(shè)置周期為0,你有認(rèn)真看視頻嗎,不懂裝懂
2017-08-02 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

去掉復(fù)選框,頁(yè)面任然記憶賬戶(hù)和密碼,后面頁(yè)面的查看用戶(hù)信息,也不是空

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)