?? reply_msg.jsp
字號:
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<%@ page import="com.vnex.intranet.communication.message.value.MessageValueBean"%>
<jsp:useBean id="msgProxy" scope="application" class="com.vnex.intranet.communication.message.proxy.MessageProxyBean" />
<jsp:useBean id="mvb" scope="request" class="com.vnex.intranet.communication.message.value.MessageValueBean" />
<jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
<jsp:setProperty name="mvb" property="*" />
<%
mvb.setSenderId(BusinessName.getEmpId());
mvb.setEmpId(BusinessName.getEmpId());
String msgTitle = request.getParameter("msgTitle");
if(msgTitle.indexOf("回復") == -1)
msgTitle = "回復:"+msgTitle;
mvb.setMsgTitle(msgTitle);
mvb.setIsSent(1);
int[] receiverIds = new int[1];
receiverIds[0] = Integer.parseInt(request.getParameter("senderId"));
mvb.setReceiverIds(receiverIds);
msgProxy.replyMessage(mvb);
%>
<html>
<head>
<script language=javascript>
function forward()
{
document.location = "/mainctrl/msg/sentHome";
}
</script>
</head>
<body onload="javascript:forward()">
</body>
<html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -