48 lines
1.6 KiB
Plaintext
48 lines
1.6 KiB
Plaintext
<%@ page language="java" contentType="text/html;charset=utf-8"%>
|
|
<%@ page import="java.io.*, java.util.*"%>
|
|
<%@ page import="com.eactive.eai.agent.firstaccount.ShareMemory" %>
|
|
<%
|
|
ShareMemory sm = ShareMemory.getInstance();
|
|
String accNum = sm.getAccoutName();
|
|
String [] accNumArr = accNum.split(",");
|
|
%>
|
|
<html>
|
|
<head>
|
|
<title>
|
|
FirstAccount Info
|
|
</title>
|
|
<script>
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p style="font-size:12pt;">
|
|
<b>FirstAccount Info</b> <br><br>
|
|
</p>
|
|
<form name="frm" action="">
|
|
<table width="800" border=0 bgcolor='black' cellpadding="1" cellspacing="1">
|
|
<tr bgcolor='white'>
|
|
<td align='right' width='180' bgcolor="#ccccff">FirstAccount :</td>
|
|
<td align='left' style="word-break: break-all;"><%=accNum %></td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
<table width="800" border=0 bgcolor='black' cellpadding="1" cellspacing="1">
|
|
<tr bgcolor='white'>
|
|
<td align='right' bgcolor="#003366"> <font color="yellow"><b>¼ø¹ø</b> </font></td>
|
|
<td align='left' bgcolor="#003366"> <font color="yellow"> <b>¸ñ·Ï</b></font></td>
|
|
</tr>
|
|
<%
|
|
for(int i=0; i<accNumArr.length; i++){
|
|
%>
|
|
<tr bgcolor='white'>
|
|
<td align='right' width='180' bgcolor="#ccccff">[ <%=i %> ] : </td>
|
|
<td align='left'><%=accNumArr[i] %></td>
|
|
</tr>
|
|
<%
|
|
}
|
|
%>
|
|
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html> |