11 lines
411 B
Plaintext
11 lines
411 B
Plaintext
<%@ page contentType="text/html; charset=GBK"%>
|
|
<%@ include file="/IncludeBeginMDAJAX.jsp"%><%
|
|
String jobClassName = CurPage.getParameter("jobClassName");
|
|
|
|
String sReturn = "None";
|
|
String jobName = Sqlca.getString("select job_name from qrtz_job_details where job_class_name='"+jobClassName+"'");
|
|
if(jobName != null){
|
|
sReturn = jobName;
|
|
}
|
|
out.println(sReturn);
|
|
%><%@ include file="/IncludeEndAJAX.jsp"%> |