<%
for (int i = 0; i < rowcount; i++) {
String disabled = "";
String tempTrainid = buf.fget("train_id", i);
String tempType = buf.fget("train_type", i);
String tempState = buf.fget("train_state", i);
String tempSubject = buf.fget("train_subject", i);
String tempempid=buf.fget("empid",i);
String employid=login.getEmpid();
if (tempType.equals("0")) {
tempType = "资料学习";
disabled = "";
} else if (tempType.equals("1")) {
tempType = "视频学习";
disabled = "disabled";
} else if (tempType.equals("2")) {
tempType = "音频学习";
disabled = "disabled";
}
if (tempState.equals("0")) {
tempState = "通过";
disabled = "";
} else {
tempState = "不通过";
disabled = "disabled";
}
if (tempSubject.equals("0")) {
tempSubject = "涉密文件";
disabled = "";
} else if (tempSubject.equals("1")) {
tempSubject = "涉密设备";
disabled = "disabled";
} else if (tempSubject.equals("2")) {
tempSubject = "涉密资产";
disabled = "disabled";
} else if (tempSubject.equals("3")) {
tempSubject = "涉密人员";
disabled = "disabled";
}
%>
<%
}
%>