AS01HELP2.jsp 2.11 KB
Newer Older
Thitichaipun Wutthisak committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
<%@page contentType="text/html; charset=UTF-8"%>
<%@page import="com.csc.library.entry.HelpEntry,com.csc.library.system.*,com.csc.library.report.ReportUDF"%>
<jsp:useBean id="AS01HELP2" class="com.csc.library.system.Task" scope="page" />
<%AS01HELP2.setChannel(request, response);%>
<%HelpEntry screen = (HelpEntry) AS01HELP2.process("HelpEntry","AS01HELP2");%>
<%screen.process();
%><html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="../CSS/TISCO.css" rel="stylesheet" type="text/css">
<script src="../JS/SCREEN.js"></script>
 
 <script language="javascript">setLang('<%=screen.getUProfile().get("lang")%>');</script>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
 
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<form name="cscform" method="post" action="">


<!----------BEGIN CSC INITIAL ZONE ------------------------>

<%=screen.InitialVariable()%>

<!----------END CSC INITIAL ZONE -------------------------->

<input type="hidden" name="__cmd" value="">
<input type="hidden" name="__language" value ="<%=screen.getUProfile().get("lang")%>"> 
  <table width="100%" border="0" cellpadding="1" cellspacing="1" bgcolor="#666666" class="inframe">
    <tr> 
      <td class="title1" width="169"><div align="center"><strong>รหัสคำตอบ</strong></div></td>
      <td class="title1" width="677"><div align="center"><strong>รายละเอียด</strong></div></td>
      <td class="title1" width="163"><div align="center"><strong>คะแนน</strong></div></td>
    </tr>
    <%
					while(screen.nextRec()){
					%>
    <tr> 
      <td><%=screen.getString("anwid")%></td>
      <td><%=screen.getString("anwdesc")%></td>
      <td><div align="center"><%=screen.getString("anwscore")%></div></td>
    </tr>
    <%}%>
  </table>
</form>
</body>
</html>