errormsg.jsp
来自「国外的一套开源CRM」· JSP 代码 · 共 26 行
JSP
26 行
<%@ page import="org.ofbiz.base.util.*" %>
<%
String eventMsgReq = (String)request.getAttribute("EVENT_MESSAGE");
String errorMsgReqControl = (String)request.getAttribute("_ERROR_MESSAGE_");
String errorMsgReq = (String)request.getAttribute("ERROR_MESSAGE");
String errorMsgSes = (String)session.getAttribute("ERROR_MESSAGE");
if(errorMsgSes != null) session.removeAttribute("ERROR_MESSAGE");
if(errorMsgReq != null){ %>
<br>
<p><font color="red"><%=errorMsgReq%></font></p>
<br>
<%} if(errorMsgSes != null){%>
<br>
<p><font color="red"><%=errorMsgSes%></font></p>
<br>
<%} if(errorMsgReqControl != null){%>
<br>
<p><font color="red"><%=errorMsgReqControl%></font></p>
<br>
<%} if(eventMsgReq != null){%>
<br>
<p><font color="blue"><%=eventMsgReq%></font></p>
<br>
<%}%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?