jsp 22) 08 result
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<h2>로그인 결과</h2>
<!-- 포워드 폴더의 내용이 나오는 창 -->
<%
String id = (String)request.getAttribute("id");
String msg = (String)request.getAttribute("msg");
int result = (int)request.getAttribute("result");
if(result==0){
%>
<%=id %> 님 환영환영~
<%
}else{
%>
<%=id %> 님 가입한거 맞아요??
<%} %>
<br>
<%=id %> <%=msg %>
</body>
</html>
Author And Source
이 문제에 관하여(jsp 22) 08 result), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@stpnlsw/jsp-22-08-result저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)