test_pipe.jsp

来自「jakarta-taglibs」· JSP 代码 · 共 25 行

JSP
25
字号
<html>
<%@taglib uri="http://jakarta.apache.org/taglibs/io-1.0" prefix="io" %>
<%--
  
  Tests the behaviour of the <io:body> tag

--%>
<%
  String s = "This is some sample text to test";
  pageContext.setAttribute( "data", s );
%>
<body>
<h2>Pipe test</h2>

<pre>Here comes the data:-
<io:body>
  <io:set property="pipeInput">
    <io:get name="data"/>
  </io:set>
</io:body>
</body>
</html>


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?