Files
eapim-online/WebContent/mgr/firstAccountInfo.jsp
T

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">&nbsp; <font color="yellow"><b>¼ø¹ø</b> &nbsp;</font></td>
<td align='left' bgcolor="#003366">&nbsp;<font color="yellow">&nbsp; <b>¸ñ·Ï</b></font></td>
</tr>
<%
for(int i=0; i<accNumArr.length; i++){
%>
<tr bgcolor='white'>
<td align='right' width='180' bgcolor="#ccccff">[ <%=i %> ] : &nbsp;&nbsp;</td>
<td align='left'><%=accNumArr[i] %></td>
</tr>
<%
}
%>
</table>
</form>
</body>
</html>