📄 update_soft.jsp~29~
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.bwm.model.Soft" %>
<%@ page import="com.bwm.core.*" %>
<%@ page import="java.util.*" %>
<%if (!Crazyadept.UserIsOK(session,FinalConstants.STATUS_ADMIN)) return;%>
<html>
<head>
<title>
update_soft
</title>
</head>
<link href="../css/admin.css" rel="stylesheet" type="text/css">
<body>
<%
int uid=ParamUtils.getIntParameter(request,"sfid");
BasetableFactory bf=BasetableFactory.getInstance();
Soft u=bf.SearchSoft("WHERE sfid="+uid);
session.removeAttribute("error");
if(u.getSfid()<=0){
session.setAttribute("error","查找失败");
response.sendRedirect("error.jsp");
}else{
%>
<table border="1" align="center" cellpadding="0" cellspacing="0" class="tableBorder3">
<tr align="center">
<td colspan="3" class="TableTitle1" >软件详细信息</td>
</tr>
<tr align="center">
<td width="23%">软件名称</td>
<td width="37%" align="left"><input name="name" type="text" value="<%=u.getName()%>"></td>
<td width="40%" rowspan="8" align="center" bgcolor="#FFFFFF"><img src="../<%=bf.SearchHead("WHERE iid='"+u.getIid()+"'").getPath()%>" border="0" name="ico" ></td>
</tr>
<tr align="center">
<td>软件版本</td>
<td align="left"><input name="edition" type="text" value="<%=u.getEdition()%>"></td>
</tr>
<tr align="center">
<td>软件类别</td>
<td align="left"><select name="sid">
<%
Collection coll=bf.ListSsort("");
if(coll==null||coll.size()<=0){
out.print("<option>无软件类别</option>");
}else{
Iterator it=coll.iterator();
while(it.hasNext()){
Ssort s=(Ssort)it.next();
out.print("<option value='"+s.getSid()+"' "+s.getSid()==u.getSid()?"selected":""+">"+s.getName()+"</option>)");
}
}%>
</select></td>
</tr>
<tr align="center">
<td>正试版本</td>
<td align="left"><input type="radio" name="regular" value="1" <%=u.getRegular()==1?"checked":""%>>
是
<input type="radio" name="regular" value="0" <%=u.getRegular()==0?"checked":""%>>
否</td>
</tr>
<tr align="center">
<td>软件价格</td>
<td align="left">
<input name="price" type="text" value="<%=u.getPrice()%>">
(元)</td>
</tr>
<tr align="center">
<td>运行环境</td>
<td align="left">
<input name="environment" type="text" value="<%=u.getEnvironment()%>"></td>
</tr>
<tr align="center">
<td>推荐指数</td>
<td align="left">
<select name="commend">
<option value="1" <%=u.getCommend()==1?"selected":""%>>1</option>
<option value="2" <%=u.getCommend()==2?"selected":""%>>2</option>
<option value="3" <%=u.getCommend()==3?"selected":""%>>3</option>
<option value="4" <%=u.getCommend()==4?"selected":""%>>4</option>
<option value="5" <%=u.getCommend()==5?"selected":""%>>5</option>
</select></td>
</tr>
<tr align="center">
<td>程序大小</td>
<td align="left">
<input name="filesize" type="text" value="<%=u.getFilesize()%>">
(MB)</td>
</tr>
<tr align="center">
<td>下载数量</td>
<td colspan="2" align="left">
<input name="loadnum" type="text" value="<%=u.getLoadnum()%>"></td>
</tr>
<tr align="center">
<td>上传人</td>
<td colspan="2" align="left"><%=bf.SearchUser("WHERE uid='"+u.getUid()+"'").getName()%></td>
</tr>
<tr align="center">
<td>上传时间</td>
<td colspan="2" align="left"><%=u.getUptime()%></td>
</tr>
<tr align="center">
<td height="80">软件介绍</td>
<td colspan="2" align="left" valign="top"><textarea name="introduce" cols="50" rows="5"><%=u.getIntroduce()%></textarea></td>
</tr>
<tr align="center">
<td height="90">其它说明</td>
<td colspan="2" align="left" valign="top"><textarea name="resume" cols="50" rows="5"><%=u.getResume()%></textarea></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 + -