user.jsp
资源名称:Jason.rar [点击查看]
上传用户:wok5188
上传日期:2018-02-20
资源大小:1835k
文件大小:1k
源码类别:
MySQL数据库
开发平台:
Java
- <%@ 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"%>
- <html>
- <head>
- <title>JSP for UserForm form</title>
- </head>
- <body>
- <div align="center">
- <html:form action="/user">
- 用户帐号 : <html:text property="username"/><html:errors property="username"/><br/>
- 用户密码 : <html:text property="userpsw"/><html:errors property="userpsw"/><br/>
- 电子邮箱 : <html:text property="useremail"/><html:errors property="useremail"/><br/>
- <html:submit property="method"><bean:message key="button.regist"/></html:submit><html:cancel/>
- </html:form>
- </div>
- </body>
- </html>