<%'//*************************************************************************************%> <%'//*************************************************************************************%> <% Dim a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr Dim cp_a_num '//쓰기권한체크************************************************************************************* if is_write <> "Y" then back_back "쓰기권한이 없습니다." End if '//************************************************************************************************** '//파라미터정보 ************************************************************************************* a_num = InputValue(request.queryString("a_num")) cp_a_num = InputValue(request.queryString("cp_a_num")) '//************************************************************************************************** If a_num = "" then '//등록 a_num = "" a_bbsname = "" a_level = "B" a_type = "N" a_tablename = "" a_imgline = "4" a_imgwidth = "130" a_imgheight = "" a_member = "N" a_ad_cms_id = "" a_ad_cms = "Y" a_cate = "N" a_email = "N" a_phone = "N" a_home = "N" a_jumin = "N" a_jumin_opt = "1" a_ftemp1 = "N" a_ftemp1_str = "" a_ftemp2 = "N" a_ftemp2_str = "" a_ftemp3 = "N" a_ftemp3_str = "" a_ftemp4 = "N" a_ftemp4_str = "" a_new = "1" a_upload = "Y" a_upload_len = "2" a_nofilesize = "5" a_nofile = "hwp,doc,ppt,xls,txt,gif,jpg,docx,pptx,xlsx,zip,alz,rar,pdf" a_reply = "N" a_replyOpt = "2" a_command = "N" a_date_list = "N" a_sdate = "" a_edate = "" a_noword = "" a_width = "100%" a_displaysu = "10" a_viewType = "1" a_lt_a = "Y" a_lt_b = "Y" a_lt_c = "Y" a_lt_e = "Y" a_lt_f = "N" a_header = "" a_hd_file = "" a_detail = "" a_dt_file = "" a_writecontent = "" a_topinclude = "" a_btminclude = "" a_skin = "1" a_date = "" a_edit = "Y" is_title_str = "신규 게시판 생성" a_password = "N" a_password_str = "" a_close = "N" a_sendmail = "N" a_sendsms = "N" Else '//수정 R_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" R_tablename_str = "board_config" R_WHERE_str = " WHERE a_num=" & a_num Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) is_title_str = "게시판 수정" End if If cp_a_num <> "" then '//복사 R_Fields = "a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_detail, a_writecontent, a_topinclude, a_btminclude, a_skin,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" R_tablename_str = "board_config" R_WHERE_str = " WHERE a_num=" & cp_a_num Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) a_bbsname = "[복사본]" & a_bbsname is_title_str = "신규 게시판 생성" End if If a_sdate = "" then a_sdate_y = Year(now) a_sdate_m = Right( "0" & Month(now), 2) a_sdate_d = Right( "0" & Day(now), 2) else a_sdate_arr = Split( a_sdate, "-" ) a_sdate_y = a_sdate_arr(0) a_sdate_m = a_sdate_arr(1) a_sdate_d = a_sdate_arr(2) End if If a_edate = "" then a_edate_arr = Split( DateSerial(Year(now), Month(now)+2, Day(now)), "-" ) a_edate_y = a_edate_arr(0) a_edate_m = a_edate_arr(1) a_edate_d = a_edate_arr(2) else a_edate_arr = Split( a_edate, "-" ) a_edate_y = a_edate_arr(0) a_edate_m = a_edate_arr(1) a_edate_d = a_edate_arr(2) End if %>

<%=is_title_str%>

게시판기본정보기본정보를 입력해주세요.

신규 게시판 생성 서식 작성
신규 게시판 생성 서식
* 갤러리 사용시 하단에서 [파일업로드] 기능을 꼭 체크하세요
회원제
* 사용 예) test1, test2, test3
: 예) 홍길동, 길동
↓ 회원목록 - 회원명 검색 결과 목록입니다.
비밀번호 인증    비밀번호 :

필드관리필드정보를 입력해주세요.

필드정보 서식 작성
필드정보 서식
관리자버튼 분류
이메일 전화번호
주소 주민번호  
사용자 필드추가 1    필드명 :
사용자 필드추가 2    필드명 :
사용자 필드추가 3    필드명 :
사용자 필드추가 4    필드명 :

기능관리기능정보를 입력해주세요.

기능정보 서식 작성
기능정보 서식
파일업로드
파일업로드 기능정보 서식
MByte이하

* 사용 예) asp, exe, dll,
<%If a_upload = "N" then%> <%End if%>
답변  
한줄답글(댓글)
공개/비공개
에디터
사용기간   ~
* 사용 예) 욕설, 비방, 광고,
글등록시 메일발송    :
글등록시 SMS발송    : * '-' 는 제외

디자인관리게시판 디자인정보를 입력해주세요.

디자인정보 서식 작성
기능정보 서식
* 퍼센트(%)단위 설정은 꼭 %를 넣어주세요. 숫자만 입력하시면 픽셀(pixel)단위로 설정됩니다.
tabindex="<%=getTabIndex()%>" />작성자 tabindex="<%=getTabIndex()%>" />작성일 tabindex="<%=getTabIndex()%>" />조회 tabindex="<%=getTabIndex()%>" />파일 tabindex="<%=getTabIndex()%>" />답변

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.