<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%> 
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
 
<html> 
<head>
<title>JSP for LoginForm form</title>
</head>
<body>
<html:form action="/login">
name : <html:text property="name"/><html:errors property="name"/><br/>
password : <html:password property="password"/><html:errors property="password"/><br/>
purview:<html:select property="purview"/>
<html:option value="admin">admin</html:option>
<html:option value="user">user</html:option>
</html:select>
<html:errors property="purview"/><br/>
<html:submit/><html:cancel/>
</html:form>
</body>
</html>
是不是哪个<h:>写错位置了有人知道哪里错了吗???