📄 errormsg.jsp
字号:
<%@ 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -