forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_resolvent.jsp
More file actions
112 lines (112 loc) · 4.56 KB
/
Copy pathupdate_resolvent.jsp
File metadata and controls
112 lines (112 loc) · 4.56 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.model.*" %>
<%@ page import="com.core.*" %>
<%@ page import="java.util.*" %>
<%if (!Crazyadept.UserIsOK(session,FinalConstants.STATUS_ADMIN)) return;%>
<html>
<head>
<title>update_resolvent</title>
</head>
<link href="../css/admin.css" rel="stylesheet" type="text/css">
<%
int rid=ParamUtils.getIntParameter(request,"rid");
BasetableFactory bf=BasetableFactory.getInstance();
Resolvent r=bf.SearchResolvent("WHERE rid="+rid);
if(r.getRid()<=0){
session.setAttribute("error","查找失败");
response.sendRedirect("errorw.jsp");
}else{
%>
<script>
function ur(){
document.form3.onse.value="on";
document.form3.action="";
document.form3.submit();
}
</script>
<body>
<table width="98%" border="0" align="center" cellpadding="0" cellspacing="1" class="tableNew">
<form action="modify_resolvent.jsp" method="post" name="form3">
<tr align="center">
<td colspan="2" class="TableTitle1" >修改解决方案</td>
</tr>
<tr align="center">
<td width="30%" bgcolor="#FFFFFF">方案名称</td>
<td width="60%" align="left" bgcolor="#FFFFFF"> <input name="name" type="text" size="50" value="<%=r.getName()%>"> </td>
</tr>
<tr align="center">
<td height="27" bgcolor="#FFFFFF">所属软件类别</td>
<input type="hidden" name="onse">
<td align="left" bgcolor="#FFFFFF"><select name="sid" onChange="ur()">
<%
int sid=ParamUtils.getIntParameter(request,"sid");
if(!"on".equals(ParamUtils.getParameter(request,"onse"))) if(sid==0) sid=r.getSid();
Collection coll=bf.ListSsort("");
if(coll==null||coll.size()<=0){
out.print("<option value='-1'>—无—</option>");
}else{
out.print("<option>—请选择—</option>");
Iterator it=coll.iterator();
while(it.hasNext()){
Ssort s=(Ssort)it.next();
out.print("<option value='"+s.getSid()+"' "+(sid==s.getSid()?"selected":"")+">"+s.getName()+"</option>)");
}
}
%>
</select></td>
</tr>
<tr align="center">
<td height="27" bgcolor="#FFFFFF">实例应用</td>
<td align="left" bgcolor="#FFFFFF"><select name="sfid">
<%
Collection col=bf.ListSoft("WHERE sid="+sid);
int sfid=ParamUtils.getIntParameter(request,"sfid");
if(sfid==0) sfid=r.getSfid();
if(col==null|col.size()<=0){
out.print("<option value='-1'>—无—</option>");
}else{
out.print("<option>—请选择—</option>");
Iterator it=col.iterator();
while(it.hasNext()){
Soft s=(Soft)it.next();
out.print("<option value='"+s.getSfid()+"'"+(sfid==s.getSfid()?"selected":"")+" >"+s.getName()+"</option>)");
}
}
%>
</select></td>
</tr>
<input type="hidden" name="haction" value="modify">
<tr align="center">
<td height="27" colspan="2" bgcolor="#FFFFFF">解决方案</td>
</tr>
<tr align="center">
<td height="14" colspan="2" bgcolor="#FFFFFF"><textarea name="content" cols="80" rows="20" class="textarea"><%=r.getContent()%></textarea></td>
</tr>
<tr align="center">
<td height="2" colspan="2" bgcolor="#FFFFFF"><%String path=bf.SearchHead("WHERE iid='"+r.getIid()+"'").getPath();if(path==null){out.print("无图片");}else{out.print("<img src=../"+path+" width=300 height=260>");}%></td>
</tr>
<tr align="center">
<td height="3" bgcolor="#FFFFFF">添加人</td>
<td height="3" align="left" bgcolor="#FFFFFF"><%=((User)bf.SearchUser("WHERE uid='"+r.getUid()+"'")).getName()%></td>
</tr>
<tr align="center">
<td height="2" bgcolor="#FFFFFF">添加时间</td>
<td height="2" align="left" bgcolor="#FFFFFF"><%=r.getUptime()%></td>
</tr>
<tr align="center">
<td height="6" colspan="2" bgcolor="#FFFFFF"> <input type="hidden" name="uid" value='<%=((User)session.getAttribute("user")).getUid()%>'>
<input name="Submit" type="submit" class="btn_grey" value="提交">
<input name="Submit2" type="reset" class="btn_grey" value="重置"></td>
</tr>
<input type="hidden" name="rid" value='<%=r.getRid()%>'>
</form>
</table>
<table width="80%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="50" colspan="5" align="right"><a href="#" onClick="Jscript:history.back()">返回</a></td>
</tr>
</table>
<%}%>
</body>
</html>