<%--
Document : Secure
Created on : May 23, 2013, 2:56:17 PM
Author : onder
--%>
<%
String username=(String)session.getAttribute("username");
if(username==null){
session.setAttribute("callback", "Secure.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>Güvenli</h1>
</body>
</html>
Dosyayı İndir