📄 graphiciteminfoedit.jsp
字号:
<%@ include file="/common/taglibs.jsp" %>
<%@ include file="/scripts/uploadCheck.jsp" %>
<%@ page contentType="text/html;charset=gb2312" %>
<%@ taglib uri="/WEB-INF/toolkit.tld" prefix="page" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
<style type="text/css">
<!--
.style1 { FONT-SIZE: 12px; FONT-FAMILY: Arial, Helvetica, sans-serif}
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<link href="../../img/css/TEXT.CSS" rel="stylesheet" type="text/css">
<link href="../../img/css/osdn.css" rel="stylesheet" type="text/css">
<link href="/challenge_cup/img/css/BAR_style.css" rel="stylesheet" type="text/css">
<link href="/challenge_cup/img/css/mystyle.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
a:link {
color: #FFFFFF;
}
.whitenav:link {
COLOR: #ffffff;
TEXT-DECORATION: none;
font-size: 14px;
}
.whitenav:visited {
COLOR: #ffffff;
TEXT-DECORATION: none;
font-size: 14px;
}
.whitenav:active {
COLOR: #ffffff;
TEXT-DECORATION: none;
font-size: 14px;
}
.whitenav:hover {
COLOR: #ffffff;
TEXT-DECORATION: none;
font-size: 14px;
}
.style16 {
color: #333333;
font-weight: bold;
}
.titlelink:link {
COLOR: #000000;
TEXT-DECORATION: none;
font-size: 14px;
}
.titlelink:visited {
COLOR: #000000;
TEXT-DECORATION: none;
font-size: 14px;
}
.titlelink:active {
COLOR: #ff3333;
TEXT-DECORATION: none;
font-size: 14px;
}
.titlelink:hover {
COLOR: #ff3333;
TEXT-DECORATION: underline;
font-size: 14px;
}
.style20 {font-size: 12px}
-->
</style>
</head>
<body>
<!-- ImageReady Slices (business_1.psd) -->
<FONT face=宋体></FONT>
<TABLE width=760 height="600" border=0 align=center cellPadding=0 cellSpacing=0>
<TBODY>
<TR>
<TD vAlign=top width="200" height="600" bgColor="#EFEFEF">
<table width="200" height="120" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#999999"><div align="center" class="style16">组态系统</div></td>
</tr>
<tr>
<td align="center" valign="middle"><a href="/graphicitemlistservlet" class="titlelink">图元编辑</a></td>
</tr>
<tr>
<td align="center" valign="middle"><a href="/backgraphiclistservlet" class="titlelink">底图编辑</a></td>
</tr>
<tr>
<td align="center" valign="middle"><a href="/appgraphiclistservlet" class="titlelink">应用组态</a></td>
</tr>
<tr>
<td align="center" valign="middle"><a href="/index.htm" class="titlelink">返回首页</a></td>
</tr>
</table> </TD>
<TD vAlign=top width="560" bgColor=#f7f7f7>
<table width="100%" height="313" border="0">
<tr>
<td height="30" ><div align="center">
<strong>图元详细信息</strong></div></td>
</tr>
<tr>
<td height="18" valign="top">
<form method="post" enctype="multipart/form-data" action="<c:url value="/graphicItemEdit.htm"/>" name="upload">
<TABLE cellSpacing=1 cellPadding=3 width="100%" align=center bgColor=#cccccc border=0>
<TBODY>
<TR>
<TD width="17%" height="30" nowrap bgColor=#ddf4ff class=p9>
<div align="center"><span class="style1">图元名称:</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<spring:bind path="graphicItem.graphicitemName">
<td width="20%">
<input type="text" name="graphicitemName" value="<c:out value="${status.value}"/>">
</td>
</spring:bind>
</tr>
</table></TD>
</TR>
<TR>
<TD width="17%" height="30" nowrap bgColor=#ddf4ff class=p9>
<div align="center"><span class="style1">图元编号:</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<td width="20%">
<input type="text" value="<c:out value="${graphicItem.id}"/>" readonly>
</td>
</tr>
</table></TD>
</TR>
<TR>
<TD width="17%" height="30" bgColor=#ddf4ff class=p9> <div align="center"><span class="style1">图元路径:</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<spring:bind path="graphicItem.graphicitemPath">
<td width="20%">
<c:out value="${status.value}"/>
</td>
</spring:bind>
</tr>
</table></TD>
</TR>
<TR>
<TD height="30" bgColor=#ddf4ff class=p9> <div align="center"><span class="style1">图元类型:</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<spring:bind path="graphicItem.graphictype.id">
<td width="20%">
<c:set value="${graphicItem.graphictype.id}" var="temp" scope="request"/>
<page:optionsCollection label="graphictypeName" value="id" name="view" property="graphicTypeList" selectname="graphictype.id" selectValue="<%=request.getAttribute("temp").toString()%>"/>
</td>
</spring:bind>
</tr>
</table></TD>
</TR>
<TR>
<TD width="17%" height="30" nowrap bgColor=#ddf4ff class=p9>
<div align="center"><span class="style1">Applet类型:</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<spring:bind path="graphicItem.applettype.id">
<td width="20%">
<c:set value="${graphicItem.applettype.id}" var="temp" scope="request"/>
<page:optionsCollection label="applettypeName" value="id" name="AppletTypeList" selectname="applettype.id" selectValue="<%=request.getAttribute("temp").toString()%>"/>
</td>
</spring:bind>
</tr>
</table></TD>
</TR>
<TR>
<TD width="17%" height="30" bgColor=#ddf4ff class=p9> <div align="center">
<span class="style1"> 图元上传:
<br>
(覆盖原图)</span></div></TD>
<TD height="30" colspan="3" bgColor=#f9f9f9 class=p9><table width="84%" border="0">
<tr>
<td><input type="file" name="file" id="file"><input type="hidden" name="isUploadFile" value="true"></td>
</tr>
</table></TD>
</TR>
<TR>
<TD height="27" colspan="2" align="right" bgColor=#FFFFFF class=p9>
<input type="button" value="提交" onclick="checkupload('add','upload','file')"></TD>
<TD width="11%" bgColor=#FFFFFF class=p9> <div align="center">
</div></TD>
<TD width="29%" bgColor=#FFFFFF class=p9> </TD>
</TR>
</TBODY>
</TABLE>
</form></td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
</table></TD>
</TR>
</TBODY>
</TABLE>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -