急!!!请高手看看Struts为什么报错!!!
我只想测试看Struts如何连数据库,所以程序很简单。请大家看看我的代码为什么报错!!
Login.jsp :
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<html:html>
<head>
<title>
indexjsp
</title>
</head>
<body>
<!--html:errors/><p-->
<!--logic:present name="hy" scope="request"-->
<!--/logic:present-->
<html:form action="LoginAction.do" method="post" focus="dbaName">
<br><br><br><br>
<p align="center">输入用户名:
<html:text property="dbaName" size="16" maxlength="16" />
<!--/html:text-->
<p align="center">请输入密码:
<html:password property="dbaPswd" size="16" maxlength="16" />
<!--/html:password-->
</html:form>
</body>
</html:html>