📄 info_resolvent.jsp~2~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.bwm.model.*" %>
<%@ page import="com.bwm.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("error.jsp");
}else{
%>
<body>
<table border="1" align="center" cellpadding="0" cellspacing="0" class="tableBorder2">
<tr align="center">
<td colspan="2" class="TableTitle1" >查看解决方案</td>
</tr>
<tr align="center">
<td width="30%">方案名称</td>
<td width="60%" align="left"><%=r.getName()%></td>
</tr>
<tr align="center">
<td height="27">所属软件类别</td>
<td align="left"><%=r.getSid().getName()%></td>
</tr>
<tr align="center">
<td height="27">实例应用</td>
<td align="left"><%=r.getName()%></td>
</tr>
<tr align="center">
<td height="27" colspan="2">解决方案</td>
</tr>
<tr align="left">
<td colspan="2"><%=r.getContent()%></td>
</tr>
<tr align="center">
<td height="2" colspan="2"><img src="<%=bf.SearchHead("WHERE iid='"+r.getIid()+"'").getPath()%>"></td>
</tr>
<tr align="center">
<td height="3">添加人</td>
<td height="3" align="left"><%=((User)bf.SearchUser("WHERE uid='"+r.getUid()+"'")).getName()%></td>
</tr>
<tr align="center">
<td height="2">添加时间</td>
<td height="2" align="left"><%=r.getUptime()%></td>
</tr>
<tr align="center">
<td height="6" colspan="2"> </td>
</tr>
</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>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -