<html xmlns:m="http://www.seasar.org/maya" m:extends="/WEB-INF/layout/layout.html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-31j" />
<title>Add</title>
</head>
<body>
<span m:inject="f:param" m:name="layoutTitle" m:value="Add"/>
<span m:inject="s:insert" m:name="body">
<script language="JavaScript">
<!--
function testAction() {
        alert('日本語');
}

//-->
</script>
<form>
<span m:inject="h:messages" m:globalOnly="false" m:showDetail="true"/>
<input type="text" m:value="#{addDto.arg1}"/> + 
<input type="text" m:value="#{addDto.arg2}"/> = 
<span m:value="#{addDto.result}"/>
<input type="submit" value="calculate" m:action="#{addAction.calculate}"/>
<input type="button" value="hoge" onclick="alert('日本語')" />
<input type="button" value="hoge2" onclick="testAction()" />
</form>
</span>
</body>
</html>