⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 topicedit.jsp

📁 tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛tbuy1.1.5是在netbeans环境下用JSF技术编写的一个论坛
💻 JSP
字号:
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><%@taglib prefix="t" uri="http://myfaces.apache.org/tomahawk"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"   "http://www.w3.org/TR/html4/loose.dtd"><f:view locale="#{localeBean.locale}"><html>    <head>        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">        <title>            <h:outputText value="内容编辑"/>        </title>        <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/common/css/style.css"/>        <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/bbs/css/style.css"/>    </head>    <body>    <h:form>    <h:messages globalOnly="false"         showDetail="true"         infoClass="infos"         errorClass="errors"         fatalClass="fatals"/>    <h:panelGrid columns="1"         border="0"        cellpadding="3"        cellspacing="3"        styleClass="tableWH"        headerClass="th">        <f:facet name="header">            <h:outputText value="内容编辑"/>        </f:facet>        <h:panelGrid columns="2"             border="1"            cellpadding="3"            cellspacing="3"            styleClass="table1 tableWH">            <h:outputText value="标题:"/>            <h:outputText value="#{bbs_topicEdit.topic.title}"/>                        <h:outputText value="出处"/>            <h:inputText value="#{bbs_topicEdit.topic.from}">                <f:validateLength maximum="32"/>            </h:inputText>            <h:outputText value="内容:"/>            <t:inputHtml required="true" addKupuLogo="false" style="height:200px;"                value="#{bbs_topicEdit.topic.content}"/>            <h:panelGroup/>            <h:panelGroup>                <h:inputHidden value="#{bbs_topicEdit.topic.num}"/>                <h:commandButton value="确认编辑" action="#{bbs_topicEdit.update}"/>            </h:panelGroup>        </h:panelGrid>    </h:panelGrid>    </h:form>    </body></html></f:view>

⌨️ 快捷键说明

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