<%@ page pageEncoding = "Shift_JIS" %>
<%@ page contentType="text/html; charset=Shift_JIS" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
<html>
<head>
<script type="text/javascript">
<!--
function submit_form(){
form = window.document.forms[0];
form.action = "<html:rewrite forward="link_test"/>";
form.submit();
return false;
}
// -->
</script>
</head>
<body>
<html:form action="/form_view" >
<html:link href="#" onclick="submit_form()"> リンク </html:link>
</html:form>
</body>
</html>
|