<%@ page pageEncoding = "Shift_JIS" %>
<%@ page contentType="text/html; charset=Shift_JIS" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<html>
<head>
<script language="javascript">
<!-- //
function disp_msg() {
alert('処理中です。');
}
// -->
</script>
</head>
<body>
<html:form action="/button_view" >
<html:text property="stringData" size="15" maxlength="15" />
<html:button property="bt" value="送信" onclick="disp_msg()"/>
</html:form>
</body></html>
|