Information.jsp~27~
资源名称:shihua.rar [点击查看]
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:5k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- <%@ page contentType="text/html; charset=GBK" %>
- <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %>
- <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
- <%@ taglib uri="FCKeditor" prefix="FCK" %>
- <%@ page language="java" import="com.fredck.FCKeditor.*" %>
- <%@ page language="java" import="com.chinacannel.entity.*;" %>
- <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
- <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html-el" %>
- <html>
- <head>
- <title>Information</title>
- <link href="<%=request.getContextPath() %>/Manage/Css/skinv2.0.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- function FCKeditor_OnComplete( editorInstance ){
- window.status = editorInstance.Description ;
- }
- function OpenInf(key){
- location.href = "<%=request.getContextPath() %>/Manage/Default.do?todo=OpenInformation&key=" + key;
- }
- </script>
- </head>
- <body bgcolor="#ffffff">
- <html:form method="post" action="/Manage/Information.do?todo=EditInformation" enctype="multipart/form-data">
- <table cellspacing="0" cellpadding="0" width="100%" border="0">
- <tr bgcolor="#cfdbe8">
- <td style="WIDTH: 20px" width="20" bgcolor="#cfdbe8" height="19"> <img height="10" src="<%=request.getContextPath() %>/Manage/images/icon.gif" width="12" alt="" /></td>
- <td valign="middle" bgcolor="#cfdbe8" colspan="2"> <c:out value="${MainTitle}" /></td>
- </tr>
- <tr>
- <td style="HEIGHT: 31px" valign="top" align="left" height="80"> </td>
- <td style="HEIGHT: 31px" valign="middle" align="left" colspan="2">
- <img src="<%=request.getContextPath() %>/Manage/images/edit.gif" align="middle" alt="" /> <c:out value="${ChildTitle}" />
- </td>
- </tr>
- <tr>
- <td style="HEIGHT: 1px" valign="top" align="left"></td>
- <td style="HEIGHT: 1px" valign="top" align="left" width="820" bgcolor="#cfdbe8"></td>
- <td style="HEIGHT: 1px; width: 144px;" valign="top" align="left"></td>
- </tr>
- <tr>
- <td style="HEIGHT: 381px" valign="top" align="left"></td>
- <td style="HEIGHT: 381px" valign="top" align="left" colspan="2">
- <br/>
- <table align="left" bgcolor="#cccccc" border="0" cellpadding="1" cellspacing="1" width="98%">
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 信息标题:
- </td>
- <td style="height: 23px">
- <input type="text" id="txtTitle" name="title" value='<c:out value="${inf.inf_Title}" />' />
- <input type="hidden" id="hidID" name="id" value='<c:out value="${inf.inf_ID}" />' />
- <input type="hidden" id="hidMenuID" name="menuID" value='<c:out value="${menu.men_ID}" />' />
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 图片上传:
- </td>
- <td style="height: 23px">
- <a href=""><c:out value="${inf.image.filename}" /></a>
- <html:file property="informationImage" size="30"></html:file>
- <input type="hidden" name="imageID" value='<c:out value="${inf.image.id}" />' /><br />
- 图片上传用于展示首页等所略小图,信息内容中如需展示的图片,请使用编辑器中的上传功能!
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 首页图片新闻:
- </td>
- <td style="height: 23px">
- <c:if test="${inf.inf_Index == 1}">
- <input type="checkbox" name="index" value="1" checked="checked" />钩选表示作为首页图片新闻显示
- </c:if>
- <c:if test="${inf.inf_Index != 1}">
- <input type="checkbox" name="index" value="1" />钩选表示作为首页图片新闻显示
- </c:if>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 信息摘要:
- </td>
- <td style="height: 23px">
- <textarea cols="80" rows="4" name="summary"><c:out value="${inf.inf_Summary}" /></textarea>
- </td>
- </tr>
- <tr bgcolor="#ffffff">
- <td style="height: 25px; width: 117px;">
- 信息内容:
- </td>
- <td style="height: 23px">
- <%
- Information information = (Information)request.getAttribute("inf");
- FCKeditor oFCKeditor ;
- oFCKeditor = new FCKeditor( request, "content" ) ;
- // oFCKeditor.setBasePath( request.getContextPath() + "/" ) ;
- oFCKeditor.setWidth("600");
- oFCKeditor.setHeight("200");
- oFCKeditor.setToolbarSet("Inf");
- if(information != null){
- if(information.getInf_Content() != null){
- oFCKeditor.setValue(information.getInf_Content());
- }
- }
- out.println( oFCKeditor.create() ) ;
- %>
- </td>
- </tr>
- <tr bgcolor="#ffffff" align="center">
- <td colspan="2">
- <input type="submit" id="btnSave" value="保 存" />
- <input type="submit" value="返 回" />
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </html:form>
- </body>
- </html>