forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
89 lines (89 loc) · 3.02 KB
/
index.jsp
File metadata and controls
89 lines (89 loc) · 3.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<%@ page contentType="text/html;charset=gb2312" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../css/left.css" rel="stylesheet" type="text/css">
</head>
<body topmargin="0px">
<table width="100%" height="500" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td height="20"> </td>
</tr>
<tr>
<td align="center" valign="top"><table width="500" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F5f7f7">
<form name="form1" method="post" action="send.jsp">
<tr align="center">
<td height="27" colspan="2" bgcolor="#21536A"><div id="reg">发送邮件</div></td>
</tr>
<tr>
<td width="200" height="22" align="center">收件人1:</td>
<td width="300"><input type="text" name="from" value="
<%
String strEmail=(String)session.getAttribute("email");
if(strEmail!=null){
out.print(strEmail);
session.removeAttribute("email");
}
%>
"></td>
</tr>
<tr>
<td height="22" align="center">收件人2:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人3:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人4:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人5:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人6:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人7:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人8:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人9:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">收件人10:</td>
<td height="22"><input type="text" name="from"></td>
</tr>
<tr>
<td height="22" align="center">主 题:</td>
<td height="22"><input name="subject" type="text" size="35"></td>
</tr>
<tr>
<td height="22" colspan="2" align="center">内 容:</td>
</tr>
<tr>
<td height="22" colspan="2" align="center"><textarea name="message" cols="60" rows="12"></textarea></td>
</tr>
<tr>
<td height="27" colspan="2" align="center"><input type="submit" name="Submit" value="确定">
<input type="reset" name="Submit2" value="重置"></td>
</tr>
</form>
</table></td>
</tr>
<tr>
<td height="20"> </td>
</tr>
</table>
</body>
</html>