<html>
<body>
<%
Cookie[] cookies=request.getCookies();
if(cookies!=null){
for(int i=0;i<cookies.length;i++){
if(cookies[i].getName().equals("test")){
String value=cookies[i].getValue();
%><h1>Name : <%=value%><%
}
}
}
%>
</body>
</html>
Dosyayı İndir