mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
45d6d3d724
git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@964154 13f79535-47bb-0310-9956-ffa450edef68
29 lines
651 B
Plaintext
29 lines
651 B
Plaintext
<%@ page contentType="text/html; charset=UTF-8" %>
|
|
<%@ taglib prefix="s" uri="/struts-tags" %>
|
|
<html>
|
|
<head>
|
|
<title><s:text name="HelloWorld.message"/></title>
|
|
</head>
|
|
|
|
<body>
|
|
<h2><s:property value="message"/></h2>
|
|
|
|
<h3>Languages</h3>
|
|
<ul>
|
|
<li>
|
|
<s:url id="url" action="HelloWorld">
|
|
<s:param name="request_locale">en</s:param>
|
|
</s:url>
|
|
<s:a href="%{url}">English</s:a>
|
|
</li>
|
|
<li>
|
|
<s:url id="url" action="HelloWorld">
|
|
<s:param name="request_locale">es</s:param>
|
|
</s:url>
|
|
<s:a href="%{url}">Espanol</s:a>
|
|
</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|