informationdetail.jsp

来自「这个是完整的wap项目的源码 开发语言 Java 系统架构 Struts +」· JSP 代码 · 共 42 行

JSP
42
字号
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import="com.longtime.wap.module.information.web.form.InformationEditForm" %>
<%@ 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"%>
<%@ include file="/include/header.jsp"%>
<table border="0" align="left" width="1000px" cellpadding="0" cellspacing="0" height="800px">
	<TR>
		<TD width="180px" align="left" rowSpan="2" class="BackLeftBackground" valign="top">
			<jsp:include flush="true" page="/frame/jsp/manage-left.jsp"></jsp:include>
		</TD>
		<TD align="center" width="820px" valign="top" height="20px">
			<jsp:include flush="true" page="/frame/jsp/manage-head.html"></jsp:include>
		</TD>
	</TR>
	<TR height="765px">
		<TD align="center" valign="top" class="BackRightBackground">
			<br>
			<html:form action="informationEditValidate.do?method=saveInformation" method="post" enctype="multipart/form-data" styleId="informationForm">
				<html:hidden property="detailType"/>
				<%
					InformationEditForm informationEditForm = (InformationEditForm)request.getAttribute("informationEditForm");
					if ("text".equalsIgnoreCase(informationEditForm.getDetailType())){
				%>
					<jsp:include flush="true" page="/module/information/jsp/informationDetailTextRight.jsp"></jsp:include>
				<%
					} else if ("music".equalsIgnoreCase(informationEditForm.getDetailType())) {
				%>
					<jsp:include flush="true" page="/module/information/jsp/informationDetailMusicRight.jsp"></jsp:include>
				<%
					} else if ("pic".equalsIgnoreCase(informationEditForm.getDetailType())) {
				%>
					<jsp:include flush="true" page="/module/information/jsp/informationDetailPicRight.jsp"></jsp:include>
				<%
					}
				%>
			</html:form>
		</TD>
	</TR>
</table>
<%@ include file="/include/footer.jsp"%>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?