21 lines
596 B
Plaintext
21 lines
596 B
Plaintext
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
|
<%@ taglib prefix="netui" uri="http://beehive.apache.org/netui/tags-html-1.0"%>
|
|
<%@ taglib prefix="netui-data" uri="http://beehive.apache.org/netui/tags-databinding-1.0"%>
|
|
<%@ taglib prefix="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0"%>
|
|
|
|
|
|
<netui:html>
|
|
<head>
|
|
<netui:base/>
|
|
</head>
|
|
<netui:body>
|
|
Message: <b>${requestScope.message}</b>
|
|
<br/>
|
|
<br/>
|
|
<netui:anchor action="shared.action1">shared.action1</netui:anchor>
|
|
</netui:body>
|
|
</netui:html>
|
|
|
|
|
|
|