Scrip Index
<%--
Document : index
Created on : Mar 28, 2013, 22:03:08 PM
Author : Rizhan
--%>
<html>
<head>
<meta
http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Untitled
Document</title>
</head>
<body>
<form name="form1"
method="post" action="Login.jsp">
<table width="200"
border="0">
<tr>
<td
colspan="2"><p>LOGIN</p> </td>
</tr>
<tr>
<td
width="82">User</td>
<td width="102"><input
type="text" name="user"></td>
</tr>
<tr>
<td>Password</td>
<td><input
type="password" name="pass"></td>
</tr>
<tr>
<td><input type="submit"
name="Submit" value="Submit"></td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
ScripLogin
<%--
Document : Login
Created on : Mar 28, 2013, 22:15:34 PM
Author : Rizhan
--%>
<%
String uservalid="rizhan";
String passvalid="12345";
String user =
request.getParameter("user");
if (user == null) user="";
String password=
request.getParameter("pass");
if (password == null)
password="";
if (user.equals(uservalid) &&
password.equals(passvalid)){
session.setAttribute("nama" , "Rizhan Gus
Hermawan");
session.setAttribute("profesi" , "Mahasiswa");
%>
<jsp:forward
page="Loginsukses.jsp" />
<%
}
else
{
%>
<jsp:forward
page="Errorlogin.jsp" />
<%
}
%>
ScripLoginsukses
<%--
Document : Loginsukses
Created on : Mar 28, 2013, 22:23:39 PM
Author : Rizhan
--%>
<html>
<head>
<meta
http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>LOGIN SUKSES</title>
</head>
<body>
<p> ANDA TELAH MELAKUKAN LOGIN, dan
informasi Anda berikut ini tersimpan di
objek session</p>
<table width="200"
border="1">
<tr>
<td
width="77">Nama</td>
<td
width="107"><%=session.getAttribute("nama")%></td>
</tr>
<tr>
<td>Profesi</td>
<td><%=session.getAttribute("profesi")%></td
</tr>
</table>
<p><a
href="Logout.jsp">LOGOUT </a></p>
<p> APABILA ANDA TELAH LOGIN ANDA
DAPAT MENGKLIK <a
href="Ceksession.jsp">
link </a> INI UNTUK MELAKUKAN CEK
SESSION. </p>
<p>
APABILA ANDA TELAH LOGOUT ANDA TIDAK DAPAT
MELAKUKAN CEKSESSION </p>
</body>
</html>
ScripErrorlogin
<%--
Document : Errorlogin
Created on : Mar 28, 2013, 22:31:45 PM
Author : Rizhan
--%>
<html>
<head>
<title> Menangani Cookie dan session
</title>
</head>
<body>
ANDA MELIHAT HALAMAN ERROR INI KARENA ANDA
TELAH MELAKUKAN LOGOUT
<a href="index.jsp"> Klik
disini untuk Login </a>
</body>
</html>
ScripCeksession
<%--
Document : Ceksession
Created on : Mar 28, 2013, 22:37:32 PM
Author : Rizhan
--%>
<%
session = request.getSession(false);
String nm = (String)
session.getAttribute("nama");
if (nm!= null){
out.println (nm);
}else{
%>
<html>
<head>
<title> Untitled
Document</title>
</head>
<body>
</html>
<jsp:forward
page="Errorlogin.jsp" />
<%
}
%>
ScripLogout
<%--
Document : Logout
Created on : Mar 28, 2013, 22:46:42 PM
Author : Rizhan
--%>
<%
session.invalidate() ;
%>
<html>
<head>
<meta
http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<p>
INFORMASI ANDA PADA SESSION TELAH TIDAK ADA
Sehingga Anda tidak mengakses kembali <a
href="Ceksession.jsp"> link
ceksession.jsp </a>
</p>
</body>
</html>
TERIMAKASIH
Tidak ada komentar:
Posting Komentar