원격 브랜치에서 eapim-online jsp 관련 파일 가져오기
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
<%@ 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>
|
||||
Reference in New Issue
Block a user