?? informationdetailtextright.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<%@ page import="com.longtime.wap.module.business.web.form.InformationEditForm" %>
<table width="750" border="0" align="center" class="TableBack">
<html:hidden name="informationEditForm" property="informationId"/>
<html:hidden name="informationEditForm" property="businessId"/>
<html:hidden name="informationEditForm" property="editFlug"/>
<html:hidden name="informationEditForm" property="filePath"/>
<html:hidden name="informationEditForm" property="businessName"/>
<html:hidden name="informationEditForm" property="searchValue"/>
<html:hidden name="informationEditForm" property="searchType"/>
<html:hidden name="informationEditForm" property="fromDate"/>
<html:hidden name="informationEditForm" property="toDate"/>
<html:hidden name="informationEditForm" property="state"/>
<html:hidden name="informationEditForm" property="currentPage"/>
<%
InformationEditForm informationEditForm = (InformationEditForm) request
.getAttribute("informationEditForm");
%>
<th colspan="3">
文字信息
</th>
<tr>
<td class="tborder"></td>
<td> </td>
<td class="tborder"></td>
</tr>
<tr>
<td class="tborder"></td>
<td>
<table width="95%" align="center" border="1" class="TableBack">
<tr>
<td align="right">
業務名稱 :
</td>
<td colspan="2">
<strong><bean:write name="informationEditForm" property="businessName"/></strong>
</td>
</tr>
<tr>
<td align="right">
信息標題 :
</td>
<td colspan="2">
<bean:write name="informationEditForm" property="title"/>
</td>
</tr>
<tr>
<td align="right">
單 價 :
</td>
<td>
<bean:write name="informationEditForm" property="price"/> 元
</td>
<td>
熱門
<html:checkbox property="isHot" disabled="true"></html:checkbox>
推薦
<html:checkbox property="isRecommend" disabled="true"></html:checkbox>
發布
<html:checkbox property="isPub" disabled="true"></html:checkbox>
</td>
</tr>
<tr>
<td align="right">
內 容 :
</td>
<td colspan="2" align="left">
<%
if(informationEditForm.getContent()==null) {
%>
<textarea cols="90" rows="10" readonly="true"></textarea>
<%
} else {
%>
<textarea cols="90" rows="10" readonly="true"><%=informationEditForm.getContent()%></textarea>
<%
}
%>
</td>
</tr>
</table>
</td>
<td class="tborder"></td>
</tr>
<tr>
<td class="tborder"></td>
<td align="center">
<input type="button" name="button" value="返回" onclick="formSubmit('informationForm', 'module/business/informationList.do?method=listInformation')">
</td>
<td class="tborder"></td>
</tr>
<tr>
<td colspan="3" class="tborder"></td>
</tr>
</table>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -