📄 elecuseinfo_delete.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>电表数据删除</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<script type="text/javascript">
function preload() {
form1.action = "/Imis/servlet/ElecUseInfo?pattern=delete";
parent.iframe_elec_tree.location.reload(); //刷新左半边的树 框架名称在menu页面内
}
</script>
</head>
<link rel="stylesheet" type="text/css" href="/Imis/imis_elec/css/style.css">
<body BGCOLOR=#FFFFFF LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 scrolling="auto" background="/Imis/imis_elec/images/bg_main.png">
<form method="post" action="/Imis/servlet/ElecUseInfo?pattern=getElecUseInfo&page=delete">
<table align="left" width="100%" border="0" class="ziti">
<tr>
<td width="100%" height="20" valign="center" align="left" colspan="7" background="/Imis/imis_elec/images/bg_main2.png"><font color="black">电表数据删除</font></td>
</tr>
<tr>
<td width="11%" align="right">电表编号:</td>
<td width="10%"><input type="text" name="ElecMeterRegNo" class="text1" size="10"/></td>
<td width="5%" align="right">年份</td>
<td width="10%">
<%-- <input type="text" name="Year" class="text1" size="10"/>--%>
<select name="Year" id="Year" class="text1">
<%
for(int i = 2005; i < 2015; ++i) {
%>
<option value="<%=i %>"><%=i %></option>
<%
}
%>
</select>
</td>
<td width="5%" align="right">月份</td>
<td width="10%">
<%-- <input type="text" name="Month" class="text1" size="10"/>--%>
<select name="Month" id="Month" class="text1">
<%
for(int i = 1; i < 13; ++i) {
%>
<option value="<%=i %>"><%=i %></option>
<%
}
%>
</select>
</td>
<td align="left"><input type="submit" name="Submit" value="查 询" class="anniu" /></td>
</tr>
</table>
</form>
<c:if test="${requestScope.ElecMeterRegNoUnexisted!=null}">
<br/><br/><br/><hr/><font color="red"><h2 align="left" class="ziti">${requestScope.ElecMeterRegNoUnexisted}</h2></font>
</c:if>
<c:if test="${requestScope.ElecUseInfo!=null}">
<br/><br/><br>
<form method="post" action="/Imis/servlet/ElecUseInfo?pattern=delete" name="form1">
<table align="left" width="500" border="0" class="ziti">
<tr>
<td width="16%" align="right">使 用 ID:</td>
<td width="34%">
<input type="text" name="UseId" value="${requestScope.ElecUseInfo.useId}" readonly="readonly" class="text1"/>
</td>
<td width="16%" align="right">电表编号:</td>
<td width="34%"><input type="text" name="ElecMeterRegNo" value="${requestScope.ElecUseInfo.elecMeterRegNo}" readonly="readonly" class="text1"/></td>
</tr>
<tr>
<td align="right">本月指数:</td>
<td><input type="text" name="NowReading" value="${requestScope.ElecUseInfo.nowReading}" readonly="readonly" class="text1" size="12"/></td>
<td align="right">上月指数:</td>
<td><input type="text" name="ElecMeterReading" value="${requestScope.ElecUseInfo.elecMeterReading}" readonly="readonly" class="text1" size="12"/></td>
</tr>
<tr>
<td align="right">读数单位:</td>
<td><input type="text" name="ReadOn" value="${requestScope.ElecUseInfo.readOn}" readonly="readonly" class="text1"/></td>
<td align="right">线 损:</td>
<td><input type="text" name="XianLoss" value="${requestScope.ElecUseInfo.xianLoss}" readonly="readonly" class="text1" size="12"/></td>
</tr>
<tr>
<td align="right">变 损:</td>
<td><input type="text" name="BianLoss" value="${requestScope.ElecUseInfo.bianLoss}" readonly="readonly" class="text1" size="12"/></td>
<td align="right">退补电量:</td>
<td><input type="text" name="TuiBu" value="${requestScope.ElecUseInfo.tuiBu}" readonly="readonly" class="text1" size="12"/></td>
</tr>
<tr>
<td align="right">计费电量:</td>
<td><input type="text" name="SumElec" value="${requestScope.ElecUseInfo.sumElec}" readonly="readonly" class="text1" size="12"/></td>
<td align="right">单 价:</td>
<td><input type="text" name="PriceUnit" value="${requestScope.ElecUseInfo.priceUnit}" readonly="readonly" class="text1" size="12"/></td>
</tr>
<tr>
<td align="right">结算日期:</td>
<td><input type="text" name="ReadDate" value="${requestScope.ElecUseInfo.readDate}" readonly="readonly" class="text1"/></td>
<%-- <td align="right">标 志:</td>--%>
<%-- <td><input type="text" name="ReMark" value="${requestScope.ElecUseInfo.reMark}" readonly="readonly" class="text1" size="7"/></td>--%>
</tr>
<tr>
<td align="right">备 注:</td>
<td><textarea name="Memo" rows="4" cols="22" readonly="readonly" class="text1">${requestScope.ElecUseInfo.memo}</textarea></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td></td>
<td align="right"><input type="submit" name="Submit" value="删 除" class="anniu" onclick="preload()" /></td>
</tr>
</table>
</form>
</c:if>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -