创建JSP网页reg.jsp,实现学生注册的表单,表单提交到regsvr.jsp,提交方式为post表单内容包含学号 姓名 密码 密码确认 性别
时间: 2023-06-18 15:02:06 浏览: 112
以下是reg.jsp的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>学生注册</title>
</head>
<body>
<h1>学生注册</h1>
<form action="regsvr.jsp" method="post">
<p>学号:<input type="text" name="id"></p>
<p>姓名:<input type="text" name="name"></p>
<p>密码:<input type="password" name="password"></p>
<p>确认密码:<input type="password" name="confirm_password"></p>
<p>性别:<input type="radio" name="gender" value="male" checked>男
<input type="radio" name="gender" value="female">女</p>
<input type="submit" value="注册">
</form>
</body>
</html>
```
在表单中,我们使用了`<input>`标签来创建输入框和单选框,使用了`<form>`标签来包含表单内容,并指定了提交方式和提交目标。其中,`name`属性用于定义表单元素的名称,方便在后台处理数据。`value`属性则用于指定单选框的值。
当用户填写完表单并提交时,表单数据将被发送到`regsvr.jsp`页面,该页面负责处理表单数据并将其保存到数据库中。
阅读全文