forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuper_add.jsp
More file actions
73 lines (71 loc) · 3.02 KB
/
Copy pathsuper_add.jsp
File metadata and controls
73 lines (71 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
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<head>
<title>MR网络购物中心——后台管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../CSS/style.css" rel="stylesheet">
</head>
<script language="javascript">
function mycheck(){
if (form1.typename.value==""){
alert("请输入大分类名称!");form1.typename.focus();return;
}
form1.submit();
}
</script>
<body>
<jsp:include page="banner.jsp"/>
<table width="788" height="288" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td align="center" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="10" height="38" align="right"> </td>
<td colspan="3" class="tableBorder_B_dashed"><img src="../images/manage_ico1.GIF" width="11" height="11"> <a href="superType.jsp">[大分类信息管理]</a></td>
<td width="12"> </td>
</tr>
<tr>
<td align="right"> </td>
<td height="10" colspan="3"> </td>
<td> </td>
</tr>
<tr>
<td height="29" align="right"> </td>
<td width="19" background="../images/manage_leftTitle_left.GIF"> </td>
<td width="588" align="center" background="../images/manage_leftTitle_mid.GIF" class="word_white"><b>添加大分类信息</b></td>
<td width="20" background="../images/manage_leftTitle_right.GIF"> </td>
<td> </td>
</tr>
</table>
<!---->
<form action="superType_add_deal.jsp" method="post" name="form1">
<table width="94%" border="0" align="right" cellpadding="0" cellspacing="0" bordercolordark="#FFFFFF">
<tr>
<td height="97">大分类名称:</td>
<td><input name="typename" type="text" id="typename" size="60"></td>
</tr>
<tr>
<td width="16%" height="82"> </td>
<td width="84%" height="82"> </td>
</tr>
<tr align="center">
<td height="38" colspan="3">
<input name="Button" type="button" class="btn_bg_short" value="保存" onClick="mycheck()">
<input name="Submit2" type="reset" class="btn_bg_short" value="重置">
<input name="Submit3" type="button" class="btn_bg_short" value="返回" onClick="JScript:window.location.href='superType.jsp';"> </td>
</tr>
</table>
</form>
<!---->
</td>
<td width="182" valign="top"><table width="100%" height="431" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="199" valign="top" bgcolor="#FFFFFF"><jsp:include page="navigation.jsp"/></td>
</tr>
</table></td>
</tr>
</table>
<jsp:include page="copyright.jsp"/>
</body>
</html>