Skip to content

Instantly share code, notes, and snippets.

@ChangJoo-Park
Created April 24, 2013 12:57
Show Gist options
  • Save ChangJoo-Park/5451929 to your computer and use it in GitHub Desktop.
Save ChangJoo-Park/5451929 to your computer and use it in GitHub Desktop.
<%--
Created by IntelliJ IDEA.
User: changju
Date: 13. 4. 24
Time: 오후 9:36
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title></title>
</head>
<body>
<h1>Login Result</h1>
<jsp:useBean id="user" class="javaBean.User" scope="session"/>
<jsp:setProperty name="user" property="*"/>
로그인 되었습니다.
아이디 : <jsp:getProperty name="user" property="userId"/>
비밀번호 : <jsp:getProperty name="user" property="userPassword"/>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment