今天我用STRUTS标签写个JSP那个BEAN标签怎么都用都是抱错
我现在把代码贴过来麻烦高人指点一下~
<%@ page language="java" contentType="text/html; charset=windows-31j"
    pageEncoding="windows-31j"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ taglib uri="/WEB-INF/tld/struts/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/tld/struts/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/tld/struts/struts-logic.tld" prefix="logic"%><html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-31j">
<title>Insert title here</title>
</head>
<body>
<html:form action="/StrutsBiao/biao.do"method="post" styleId="bForm">
<html:checkbox property="ggtt" name="bForm" value="1"/>
<html:checkbox property="ggtt" name="bForm"/>
<html:select property="select"name="bForm">
<html:option value="123456789"></html:option>
</html:select>
<bean:header id="lang" name="bForm"/>
<html:submit>OK</html:submit>
</html:form>
</body>
</html:html>