⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 50b0322f1717001c100c934bc9948d8a

📁 使用JSP+Servlet+Hibernate+Struts实现的一个学生软件发布平台
💻
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ 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 RegisterForm form</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 rel="stylesheet" type="text/css" href="styles.css">
		-->

	</head>
	<body>
  		<html:form action="/register">
			Must:<br/>
			userName : <html:text property="userName" maxlength="16"/>
				(letter,number,underline)
				<html:errors property="userName"/><br/>
			password : <html:password property="password" maxlength="16"/><html:errors property="password"/><br/>
			rePassword : <html:password property="rePassword" maxlength="16"/><html:errors property="rePassword"/><br/>
			nick : <html:text property="nick" maxlength="20"/><html:errors property="nick"/><br/>
			email : <html:text property="email" maxlength="32"/><html:errors property="email"/><br/>
			<hr>
			Not Must:<br/>
			name : <html:text property="name" maxlength="16"/><html:errors property="name"/><br/>			
			sex : <html:radio property="sex" value="M"/>M
				<html:radio property="sex" value="F"/>F
				<html:errors property="sex"/><br/>
			class_ : <html:text property="class_" maxlength="32"/><html:errors property="class_"/><br/>
			tel : <html:text property="tel" maxlength="20"/><html:errors property="tel"/><br/>
			Is Open?<html:checkbox property="isOpen" value="true"><br/></html:checkbox>
			<html:submit/><html:reset/>
		</html:form>
	</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -