首页 > 编程 > JSP > 正文

jsp+mysql制作简单的留言板(2)

2024-09-05 00:19:06
字体:
来源:转载
供稿:网友
上次已经完成了board.jsp ,现在来看看第二个:message.html,这个是相当的简单的。这个档案是产生一个表单来让使用的人输入资料和留言!
代码:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> 我要留言 </title>
<meta name="generator" content="editplus">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
</head>

<body>
<font size=7 color=green>我要留言</font>
<hr>
<center>
<form action=savememo.jsp method=get>
<table border=1>
<tr>
<td bgcolor=yellow>姓名:</td>
<td><input type=text size=20 name=name></td>
</tr>
<tr>
<td bgcolor=yellow>性别</td>
<td>男<input type=radio name=sex value=boy.gif checked>女
<input type=radio name=sex value=girl.gif checked></td>
</tr>
<tr>
<td bgcolor=yellow>email:</td>
<td><input type=text size=40 name=email></td>
</tr>
<tr>
<td bgcolor=yellow>主题:</td>
<td><input type=text size=60 name=subject></td>
</tr>
<tr>
<td valign=top bgcolor=yellow>留言:</td>
<td><textarea name=memo rows=4 cols=60></textarea></td>
</tr>
<tr align=center><td colspan=2><input type=submit method=send value=我要留言>
<input type=reset value=我要重写></td>

</tr>
</table>
</form>
<hr>
<center>
<a href=board.jsp>回留言板</a>
</body>
</html>




上一篇:JSP - FAQ (2)

下一篇:Servlet/JSP配置详解

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表