주소 : http://localhost:8282/bb/aa.jsp?id=aa&pw=aa
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@taglib prefix ="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>Insert title here</title>
</head>
<body>
<c:if test="${param.id == param.pw }"> ==이랑 eq랑 같음
로그인성공
</c:if>
<c:if test="${param.id!=param.pw }">
로그인실패
</c:if>
</body>
</html>
JSTL forEach문에 items 써서 배열 다출력하기 (0) | 2015.03.12 |
---|---|
JSTL 에서 포문쓰기 forEach (0) | 2015.03.12 |
JSTL 써서 셋팅된값 바로 출력하기 (0) | 2015.03.12 |
web.xml 에 있는 context-param 불러오기 (0) | 2015.03.12 |
EL을 이용해서 모든 쿠키 , JSESSIONID 까지 가져오는방법 (0) | 2015.03.12 |