<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="practice17.User" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<%
String username
= (String) session.
getAttribute("username"); String password
= (String) session.
getAttribute("password");
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<center>
<h2>メニュー</h2><br/>
<%=username %><br/>
<%=password %>
<jsp:setProperty property="User" name=""/>
</center>
</body>
</html>
最終更新:2013年06月03日 22:30