?? right.jsp
字號:
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@ page import="java.util.Map,java.util.TreeMap" %>
<%@ taglib prefix="s2" uri="/struts-tags" %>
<%
Map checkState=new TreeMap();
checkState.put("1","已審核");
checkState.put("0","未審核");
checkState.put("all","全部");
Map payforState=new TreeMap();
payforState.put("1","已付費");
payforState.put("0","未付費");
payforState.put("all","全部");
request.setAttribute("checkState",checkState);
request.setAttribute("payforState",payforState);
%>
<html>
<head><title>后臺-側欄</title></head>
<body background="images/back.gif">
<center>
<table border="0" width="220" height="100%" cellspacing="0" cellpadding="0" style="margin-top:7">
<!-- 顯示方式 -->
<tr height="30" bgcolor="#F0F0F0"><td style="text-indent:5;border:1 solid"><font color="#004790"><b>■顯示方式</b></font></td></tr>
<tr height="1"><td></td></tr>
<s2:form action="admin_ListShow.action?" theme="simple">
<tr>
<td align="center" valign="top" style="border:1 solid">
<table border="0" width="220" height="150" rules="all" cellspacing="0">
<tr>
<td align="center" colspan="2">
<fieldset style="height:60;width:210">
<legend>★付費狀態</legend>
<br>
<s2:radio list="#request.payforState" name="showType.payforType" value="%{showType.payforType}"/>
</fieldset>
<fieldset style="height:60;width:210">
<legend>★審核狀態</legend>
<br>
<s2:radio list="#request.checkState" name="showType.stateType" value="%{showType.stateType}"/>
</fieldset>
</td>
</tr>
<tr align="center" height="30" bgcolor="lightgrey">
<td>
信息類別:
<s2:select
emptyOption="true"
list="#session.typeMap"
name="showType.infoType"/>
<s2:submit value="顯示"/>
</td>
</tr>
</table>
</td>
</tr>
</s2:form>
<tr height="5"><td></td></tr>
<!-- 設置已付費信息 -->
<tr height="30" bgcolor="#F0F0F0"><td style="text-indent:5" style="border:1 solid"><font color="#004790"><b>■付費設置</b></font></td></tr>
<tr height="1"><td></td></tr>
<form action="admin_SetMoneyShow.action">
<tr>
<td align="center" valign="top" style="border:1 solid">
<table border="0" width="220" height="80" cellspacing="0" rules="none">
<tr height="25"><td align="center" valign="bottom">請輸入要設為已付費狀態的信息ID:</td></tr>
<tr height="40">
<td align="center">
<input type="text" name="moneyID" value="${param['moneyID']}" size="24"/>
<input type="submit" value="查詢"/>
</td>
</tr>
</table>
</td>
</tr>
</form>
<tr height="5"><td></td></tr>
<tr height="30" bgcolor="#F0F0F0"><td style="text-indent:5;border:1 solid"><font color="#004790"><b>■日歷</b></font></td></tr>
<tr height="1"><td></td></tr>
<!-- 日歷 -->
<tr height="130">
<td valign="top" style="border:1 solid"><jsp:include page="/pages/calendar.jsp"/></td>
</tr>
</table>
</center>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -