%@ page contentType="text/html;charset=euc-kr"
import = "java.util.*,java.sql.*, datamodel.DMMember"%>
<%@ include file="/member/certify.jsp"%>
<%
String uid = "";
if(session.getAttribute("uid") != null) {
uid = (String)session.getAttribute("uid");
}
if(!uid.equals("")) {
%>
<% //////////////////////////////////////////////////////////////////////////////////////////////////////////
// Data-model Beans %>
<% //////////////////////////////////////////////////////////////////////////////////////////////////////////
// Database Connection Beans %>
<%
Connection conn = null;
try {
conn = dbBeans.getConnection();
} catch (Exception e) {
throw new Exception(e.getMessage());
}%>
<% //////////////////////////////////////////////////////////////////////////////////////////////////////////
// Business-logic Beans %>
<%
Vector v1 = null;
try
{
v1 = blBeans1.getMemberData(conn, uid);
dm = (DMMember) v1.elementAt(0);
} catch (Exception e) {
throw new Exception(e.getMessage());
} finally {
if (conn != null) dbBeans.releaseConnection(conn);
}
boolean[] int_item = new boolean[17] ;
int[] intArr = new int[17] ;
StringTokenizer st_int = new StringTokenizer(dm.interest, ",");
int i = 1;
while (st_int.hasMoreElements()) {
intArr[i] = Integer.parseInt(st_int.nextToken());
int_item[intArr[i]] = true;
i++;
}
%>
CNP Â÷¾Ø¹Ú ÇǺΰú¿¡ ¿À½Å°ÍÀ» ȯ¿µÇÕ´Ï´Ù.
<%String top_title="my";%>
| <%@ include file="/includes/pages/top.jsp"%> |
|
|
|
<%@ include file="/includes/pages/bottom.jsp"%> |
<%}%>