home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 July / CMCD0703.ISO / Software / Freeware / Programare / bugzero / jsp / notice.jsp < prev    next >
Text File  |  2003-06-05  |  407b  |  29 lines

  1. <html>
  2. <head>
  3. <title>Notice and Result</title>
  4. </head>
  5. <body topmargin=0>
  6. <%@ include file="_cache.jspf" %>
  7. <%@ include file="_header.jspf" %>
  8. <%
  9.   String info = request.getQueryString();
  10.   if (info == null) {
  11.     info = "";
  12.   } else {
  13.     info = java.net.URLDecoder.decode(info); 
  14.   }
  15. %>
  16.  
  17. <br><center>
  18. <font size=+1 color="red">
  19. <%=info%>
  20. </font>
  21. <center>
  22. </body>
  23. </html>
  24.  
  25.  
  26.  
  27.  
  28.  
  29.