%@ page contentType="text/html; charset=euc-kr" %>
<%@ page import="com.util.* , com.pro.* , com.business.* " %>
<%@ page import="java.util.*" %>
<% request.setCharacterEncoding("euc-kr"); %>
<%
if(!request.getMethod().equals("POST")){
out.print("");
return;
}
String ip = request.getRemoteAddr();
String v_code = (ParamUtil.getString( request, "v_code" , "" )).trim();
String company_name = (ParamUtil.getString( request, "company_name" , "" )).trim();
String syear = (ParamUtil.getString( request, "syear" , "" )).trim();
String smonth = (ParamUtil.getString( request, "smonth" , "" )).trim();
String eyear = (ParamUtil.getString( request, "eyear" , "" )).trim();
String emonth = (ParamUtil.getString( request, "emonth" , "" )).trim();
String ceo_name = (ParamUtil.getString( request, "ceo_name" , "" )).trim();
String email = (ParamUtil.getString( request, "email" , "" )).trim();
String pos = (ParamUtil.getString( request, "pos" , "" )).trim();
String phone = (ParamUtil.getString( request, "phone" , "" )).trim();
String pname = (ParamUtil.getString( request, "pname" , "" )).trim();
String pemail = (ParamUtil.getString( request, "pemail" , "" )).trim();
String tel = (ParamUtil.getString( request, "tel" , "" )).trim();
String fax = (ParamUtil.getString( request, "fax" , "" )).trim();
String o_zip_code1 = (ParamUtil.getString( request, "o_zip_code1" , "" )).trim();
String o_zip_code2 = (ParamUtil.getString( request, "o_zip_code2" , "" )).trim();
String o_zip_code = o_zip_code1 +"-"+o_zip_code2 ;
String o_addr1 = (ParamUtil.getString( request, "o_addr1" , "" )).trim();
String o_addr2 = (ParamUtil.getString( request, "o_addr2" , "" )).trim();
String homepage = (ParamUtil.getString( request, "homepage" , "" )).trim();
String company_sales = (ParamUtil.getString( request, "company_sales" , "" )).trim(); //ÇöÀç³âµµ-1 ¸ÅÃâ¾×
String business = (ParamUtil.getString( request, "business" , "" )).trim();
String main_biz = (ParamUtil.getString( request, "main_biz" , "" )).trim();
String main_content = (ParamUtil.getString( request, "main_content" , "" )).trim();
String kova_content = (ParamUtil.getString( request, "kova_content" , "" )).trim();
String kova_part = (ParamUtil.getString( request, "kova_part" , "" )).trim();
String serial = (ParamUtil.getString( request, "serial" , "" )).trim();
String ceo_id = (ParamUtil.getString( request, "ceo_id" , "" )).trim();
String pwd = (ParamUtil.getString( request, "pwd" , "" )).trim();
String company_date = (ParamUtil.getString( request, "company_date" , "" )).trim();
String syear_info_chk = (ParamUtil.getString( request, "syear_info_chk" , "" )).trim();
String smonth_info_chk = (ParamUtil.getString( request, "smonth_info_chk" , "" )).trim();
String eyear_info_chk = (ParamUtil.getString( request, "eyear_info_chk" , "" )).trim();
String emonth_info_chk = (ParamUtil.getString( request, "emonth_info_chk" , "" )).trim();
String biz_no = (ParamUtil.getString( request, "biz_no" , "" )).trim();
String company_salesB = (ParamUtil.getString( request, "company_salesB" , "" )).trim(); //ÇöÀç³âµµ-3 ¸ÅÃâ¾×
String company_salesA = (ParamUtil.getString( request, "company_salesA" , "" )).trim(); //ÇöÀç³âµµ-2 ¸ÅÃâ¾×
String company_date_YN = (ParamUtil.getString( request, "company_date_YN" , "" )).trim();
/*
out.print("ip:"+ip+"
");
out.print("v_code:"+v_code+"
");
out.print("company_name:"+company_name+"
");
out.print(syear+"
");
out.print(smonth+"
");
out.print(eyear+"
");
out.print(emonth+"
");
out.print(syear_info_chk+"
");
out.print(smonth_info_chk+"
");
out.print(eyear_info_chk+"
");
out.print(emonth_info_chk+"
");
out.print(ceo_name+"
");
out.print(email+"
");
out.print(pos+"
");
out.print(phone+"
");
out.print(pname+"
");
out.print(pemail+"
");
out.print(tel+"
");
out.print(fax+"
");
out.print(o_zip_code+"
");
out.print(o_addr1+"
");
out.print(o_addr2+"
");
out.print(business+"
");
out.print(main_biz+"
");
out.print(main_content+"
");
out.print(kova_content+"
");
out.print(homepage+"
");
out.print(company_sales+"
");
out.print(serial+"
");
*/
Hashtable hash = new Hashtable();
hash.put("v_code" , v_code);
hash.put("company_name" , company_name);
hash.put("syear" , syear);
hash.put("smonth" , smonth);
hash.put("eyear" , eyear);
hash.put("emonth" , emonth);
hash.put("ceo_name" , ceo_name);
hash.put("email" , email);
hash.put("pos" , pos);
hash.put("phone" , phone);
hash.put("pname" , pname);
hash.put("pemail" , pemail);
hash.put("tel" , tel);
hash.put("fax" , fax);
hash.put("o_zip_code" , o_zip_code);
hash.put("o_addr1" , o_addr1);
hash.put("o_addr2" , o_addr2);
hash.put("homepage" , homepage);
hash.put("company_sales" , company_sales);
hash.put("business" , business);
hash.put("main_biz" , main_biz);
hash.put("main_content" , main_content);
hash.put("kova_content" , kova_content);
hash.put("ip" , ip);
hash.put("kova_part" , kova_part);
hash.put("serial" , serial);
hash.put("ceo_id" , ceo_id);
hash.put("pwd" , pwd);
hash.put("company_date" , company_date);
hash.put("biz_no" , biz_no);
hash.put("company_salesB" , company_salesB);
hash.put("company_salesA" , company_salesA);
hash.put("company_date_YN" , company_date_YN);
DB_INS ins = new DB_INS();
boolean res = false;
res = ins.insert(hash , "UDP_VipMember_Info_MODIFY_OK" , 0);
if(res){
ins.OK_close();
}else{
ins.ERR_close();
PrcLog.info("kova" , " ³³ºÎµî·Ï - : " + ins.getErrMsg());
out.print("");
return;
}
%>