アットウィキロゴ

KS > practice > practice17jsp2

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ page import="practice17.User" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  5. <html>
  6. <%
  7. String username = (String) session.getAttribute("username");
  8. String password = (String) session.getAttribute("password");
  9.  
  10. %>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. <title>Insert title here</title>
  14. </head>
  15. <body>
  16. <center>
  17. <h2>メニュー</h2><br/>
  18. <%=username %><br/>
  19. <%=password %>
  20. <jsp:setProperty property="User" name=""/>
  21. </center>
  22. </body>
  23. </html>
  24.  
最終更新:2013年06月03日 22:30