📄 reply.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="/inc/pv/admin.jsp"%>
<%@ include file="/inc/public/msg.jsp"%>
<%
/*****
*
* 功能介绍:根据当前的MenuId,对应的action名和当前用户,判断是否有进入此页面的权限
*
*/
if(checkPv(strMenuId,"edit",user)<0){
noPv(out);
return;
}
%>
<%
igec.site.extend.bean.LwObj lw = (igec.site.extend.bean.LwObj)request.getAttribute("lw");
if(lw==null){
showError("获取页面数据失败!",request,response);
return;
}
String strType = request.getParameter("type");
if(igec.util.Tool.IsEmpty(strType)) strType = "0";
String strCurMenuName = igec.site.base.business.DataUtilBusiness.getFieldValue("TITLE","TAB_IGECMENU","WHERE ID='" + strMenuId + "'");
String strCurMenuPic = igec.site.base.business.DataUtilBusiness.getFieldValue("SHOWIMG","TAB_IGECMENU","WHERE ID='" + strMenuId + "'");
%>
<html>
<head>
<title>回复<%=strCurMenuName%>--<%=igec.site.base.bean.SitePara.strWebTitle%></title>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<link rel="stylesheet" type="text/css" href="<%=strCssPath%>">
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/public.js"></script>
<script language="javascript" src="<%=site.bean.SitePara.strVirtualName%>/js/check.js"></script>
<script language="javascript" src="<%=strSkinBase%>/js/forbid.js"></script>
<script language="javascript">
<!--
//-->
</script>
</head>
<body class="bodycolor" topmargin="5" onload="resizeWin('objBody');">
<table border="0" name="objBody" id="objBody" width="700" cellpadding="2" cellspacing="1" align="center" bgcolor="#000000" class="small">
<form action="?action=pass&iid=<%=strMenuId%>&id=<%=lw.getStrId()%>&rid=<%=lw.getStrRId()%>" method="post" name="form1" onsubmit="return Check(this);" target="_IGEC_YL_IFRAME">
<tr>
<td colspan="4" class="TableHeader"><img src="<%=strSkinBase%>/images/menu/sys/<%=strCurMenuPic%>" align="absmiddle"> 基本信息 带<font color="#FF0000">*</font>号为必填项</td>
</td>
</tr>
<tr height="30">
<td nowrap class="TableData" width="10%"> 留言人:</td>
<td class="TableData" colspan="3">
<span class="big3"><%=lw.getStrUName()%></span>
</td>
</tr>
<tr height="30">
<td nowrap class="TableData" width="10%"> 留言人IP地址:</td>
<td class="TableData" colspan="3">
<span class="big3"><%=lw.getStrLIp()%></span>
</td>
</tr>
<tr height="30">
<td nowrap class="TableData" width="10%"> 留言人信息:</td>
<td class="TableData" colspan="3">
<span class="big3"> <%if(!igec.util.Tool.IsEmpty(lw.getStrUEmail())) out.print("邮箱: " + lw.getStrUEmail());%> 电话: <%=lw.getStrUTel()%> <%if(!igec.util.Tool.IsEmpty(lw.getStrUQQ())) out.print("QQ: " + lw.getStrUQQ());%> </span>
</td>
</tr>
<tr height="30">
<td nowrap class="TableData" width="10%"> 留言内容:</td>
<td class="TableData" colspan="3">
<%=igec.util.FormatUtil.getStrHtmlOut(site.business.DataUtilBusiness.getContent(lw.getStrLId()))%>
</td>
</tr>
<tr height="30">
<td nowrap class="TableData" width="10%"> 留言时间:</td>
<td class="TableData" colspan="3">
<span class="big3"><%=igec.util.Tool.getStrTime(lw.getStrLTime(),0)%></span>
</td>
</tr>
<tr height="25">
<td nowrap class="TableData" width="10%"> 回复:</td>
<td class="TableData" colspan="3">
<TEXTAREA id="rContent" name="rContent" rows=7 cols=73 onChange="return CheckLength(this,300);" label="回复内容"><%=site.business.DataUtilBusiness.getContent(lw.getStrRId())%></TEXTAREA>
<br><FONT color=#cc3300>* 不超过300个汉字 为空表示删除回复</font>
</td>
</tr>
<tr align="center" class="TableControl">
<td colspan="4" nowrap>
<input type="submit" value="回 复" class="BigButton" title="回复<%=strCurMenuName%>">
<input type="button" value="关 闭" class="BigButton" onClick="javascript:window.close();">
</td>
</tr>
</form>
</table>
<iframe id="_IGEC_YL_IFRAME" name="_IGEC_YL_IFRAME" src="" width="0" height="0" style="display:none"></iframe>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -