- <%@ page
contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"
%>
<%@ page import="ss.fts.Fts" %>
<%@ page import="org.apache.commons.lang3.StringUtils" %>
<%@ page import="java.sql.SQLException" %>
<%@ page import="biz.rc.RcXcdjlU" %>
<html>
<head>
<title>发送执行校长消息</title>
</head>
<body>
</body>
</html>
<%
//String objName = request.getParameter("name");
//if (StringUtils.isBlank(objName)) {
// out.println("指定对象名:name=dw");
// return;
//}
try {
RcXcdjlU.sendNoticeByZxxz();
} catch (SQLException e) {
throw new RuntimeException(e);
}
response.getWriter().write("<div><h1>发送执行校长消息成功<h1></div>");
%>
|