?? bulletins_delete.jsp
字號:
<%@ page errorPage="/vnex/ErrorPage.jsp" %>
<jsp:useBean id="bulletinProxy" scope="application" class="com.vnex.intranet.communication.bulletin.proxy.BulletinProxyBean" />
<jsp:useBean id="BusinessName" scope="session" class="com.vnex.intranet.pub.BusinessSession" />
<%
String[] ids = request.getParameterValues("bulletinId");
if(ids != null)
{
for(int i=0;i<ids.length;i++)
{
if(BusinessName.getEmpId() == bulletinProxy.getBulletinDetail(Integer.parseInt(ids[i])).getCreatorId())
bulletinProxy.deleteBulletin(Integer.parseInt(ids[i]));
}
}
%>
<html>
<head>
<script language=javascript>
function forward()
{
document.location = "/mainctrl/bulletin/home?ss=<%=request.getParameter("ss")%>";
}
</script>
</head>
<body onload="javascript:forward()">
</body>
<html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -