You are viewing a plain text version of this content. The canonical link for it is here.
Posted to watchdog-dev@jakarta.apache.org by sa...@locus.apache.org on 2000/10/04 02:06:59 UTC

cvs commit: jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/info positiveInfo.jsp

santosh     00/10/03 17:06:58

  Added:       src/server/jsp-tests/jsp/core_syntax/directives/page/info
                        positiveInfo.jsp
  Log:
  watchdog 4.0
  
  Revision  Changes    Path
  1.1                  jakarta-watchdog-4.0/src/server/jsp-tests/jsp/core_syntax/directives/page/info/positiveInfo.jsp
  
  Index: positiveInfo.jsp
  ===================================================================
  <html>
  <title>positiveInfo</title>
  <body>
  <% /**	Name :positiveInfo
  		Description: Set the value of the info attribute to a specific
  			  value.Then invoke the getServletInfo method on the current 
  			  page's Servlet object
  		Result: Should return the correct value of the set string. 
  **/ %>		
  <!-- Testing for the 'info' directive -->
  <%@ page info="positiveInfo of JCK" %>
  <% out.println(getServletInfo()); %>
  </body>
  </html>