numguess.jsp
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.  Licensed to the Apache Software Foundation (ASF) under one or more
  3.   contributor license agreements.  See the NOTICE file distributed with
  4.   this work for additional information regarding copyright ownership.
  5.   The ASF licenses this file to You under the Apache License, Version 2.0
  6.   (the "License"); you may not use this file except in compliance with
  7.   the License.  You may obtain a copy of the License at
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.   Unless required by applicable law or agreed to in writing, software
  10.   distributed under the License is distributed on an "AS IS" BASIS,
  11.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.   See the License for the specific language governing permissions and
  13.   limitations under the License.
  14.   Number Guess Game
  15.   Written by Jason Hunter, CTO, K&A Software
  16.   http://www.servlets.com
  17. -->
  18. <%@ page import = "num.NumberGuessBean" %>
  19. <jsp:useBean id="numguess" class="num.NumberGuessBean" scope="session"/>
  20. <jsp:setProperty name="numguess" property="*"/>
  21. <html>
  22. <head><title>Number Guess</title></head>
  23. <body bgcolor="white">
  24. <font size=4>
  25. <% if (numguess.getSuccess()) { %>
  26.   Congratulations!  You got it.
  27.   And after just <%= numguess.getNumGuesses() %> tries.<p>
  28.   <% numguess.reset(); %>
  29.   Care to <a href="numguess.jsp">try again</a>?
  30. <% } else if (numguess.getNumGuesses() == 0) { %>
  31.   Welcome to the Number Guess game.<p>
  32.   I'm thinking of a number between 1 and 100.<p>
  33.   <form method=get>
  34.   What's your guess? <input type=text name=guess>
  35.   <input type=submit value="Submit">
  36.   </form>
  37. <% } else { %>
  38.   Good guess, but nope.  Try <b><%= numguess.getHint() %></b>.
  39.   You have made <%= numguess.getNumGuesses() %> guesses.<p>
  40.   I'm thinking of a number between 1 and 100.<p>
  41.   <form method=get>
  42.   What's your guess? <input type=text name=guess>
  43.   <input type=submit value="Submit">
  44.   </form>
  45. <% } %>
  46. </font>
  47. </body>
  48. </html>