请大家帮忙一下,JSP新手
请大家帮忙一下,请问下,大家能从以下代码中看出是使用什么数据库吗,我一点都不懂,看代码都晕了,还请哪位老大帮我解释一下,谢谢啦.
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
prefix="logic"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles"
prefix="tiles"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template"
prefix="template"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested"
prefix="nested"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
<head>
<html:base />
<title>考勤管理系统</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<LINK
href="${pageContext.request.contextPath}/css/extremecomponents.css"
type=text/css rel=stylesheet>
</head>
<body>
<tiles:insert page="menu.jsp" />
<html:form action="/login" method="post" focus="login">
<div class="eXtremeTable">
<table border="0" cellspacing="0" cellpadding="0" class="tableRegion"
width="300" align="center">
<TR class="tableHeader">
<TD colspan="2" align="center">
登陆界面
</TD>
</tr>
<tr class="odd">
<td width="32%">
代码:
</td>
<td width="68%">
<html:text property="code" />
</td>
</tr>
<tr class="even">
<td>
密码:
</td>
<td>
<html:password property="password" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<html:submit styleClass="formButton" value="登 陆" />
<P>
<font color="green" size="2"> 说明:代码就是你在考勤机上的代码,初始密码123456.
</font>
</P>
<P>
<font color="red" size="2"><html:errors /> </font>
</P>
</td>
</tr>
</table>
</div>
</html:form>
<br><br><br>
<div align="center">
<IMG alt="请假、年休网上审批流程图"
src="${pageContext.request.contextPath}/image/flow.GIF">
</div>
<br><br><br>
<div align="center" >
<table width="630"><tr ><td>
<font size="2" >
说明:<br>
1、出差、请假或年休人员登录考勤管理系统后按要求填写新的申请内容并提交即可;<br>
</font>
</td></tr></table>
</div>
<br><br><br>
<tiles:insert page="foot.jsp" />
</body>
</html:html>