<%--
Document : Login
Created on : May 23, 2013, 2:30:56 PM
Author : onder
--%>
<%
String username=(String)session.getAttribute("username");
if(username==null){
session.setAttribute("callback", "Home.jsp");
response.sendRedirect("Login.jsp");
return ;
}
%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<h1>Ev</h1>
Hoşgeldin <b><%=username%></b><br/>
<a href="Logout.jsp">Çık</a>
</body>
</html>
Dosyayı İndir