[JSP] 로그인 화면(include, include 주의점)

[JSP] 로그인 화면(include, include 주의점)

login.html

Insert title here 로그인 아이디 패스워드

<%@ page contentType="text/html" pageEncoding="utf-8"%> <% String uid = request.getParameter("id"); String res = "사용자 아이디: " + uid + ""; out.print(res); %> <%@ include file="loginTime.jsp"%>

<%@ page contentType="text/html" pageEncoding="utf-8"%> <%@ page import = "java.util.Date" %> <% String res1 = "로그인 시간: " + (new Date()).toString(); out.print(res1); %>

include 주의할 점

두 파일 간 이름이 같은 변수가 있어서는 안됨.

from http://corin-2396.tistory.com/17 by ccl(A) rewrite - 2021-11-01 10:28:08